TGTGInsighttelegram intelligenceLIVE / telegram public index
← Python Заметки

TGINSIGHT SIMILAR POSTS

Најди сличен содржај

Изворен канал @pythonotes · Post #32 · 7 фев.

Скорее всего уже слышали, что складывать строки через + это плохая практика. Падение производительности, и всё такое. Без лишних слов, давайте измерять: from timeit import timeit def t1(): # складываем 10 строк через + из переменной t = 'text' for _ in range(1000): s = t + t + t + t + t + t + t + t + t def t2(): # склеиваем список строк через метод join arr = ['text'] * 10 for _ in range(1000): s = ''.join(arr) def t3(): # складываем через + но не из переменной а непосредственно инлайн объекты for _ in range(1000): s = 'text' + 'text' + 'text' + ... # всего 10 раз Теперь каждую строку склейки запустим по 10М раз >>> timeit(t1, number=10000) 0.21951690399964718 >>> timeit(t2, number=10000) 1.4978306379998685 >>> timeit(t3, number=10000) 0.2213820789993406 Хм, а нам говорили что через "+" это плохо и медленно ))) 😁 Тут стоит учитывать, что речь идёт о склейке множества длинных строк. Давайте изменим условия: def t4(): t = 'text'*100 for _ in range(1000): s = t + t + t + t + t + t + t + t + t def t5(): arr = ['text'*100] * 10 for _ in range(1000): s = ''.join(arr) def t6(): for _ in range(1000): s = 'text'*100 + 'text'*100 + ... # всего 10 раз >>> timeit(t4, number=10000) 12.795130728000004 >>> timeit(t5, number=10000) 2.642637542999182 >>> timeit(t6, number=10000) 0.2184546610005782 Вот, уже другой разговор, сразу видна разница, в среднем в 6 раз. Но погодите, почему последний тест t6() по скорости такой же как и t3()? Ведь строки теперь в 100 раз длиннее! Это вопросы оптимизации кода, какие простые изменения ускоряют или замедляют выполнение программы. Мы столкнулись с примером обхода обращения к переменной. Например, именно так работает директива #define в С++, во время компиляции подставляя значение переменной вместо ссылки на неё. В Python это тоже работает, но часто ли вы сможете встретить такой способ работы со строками? К сожалению, способ почти только теоретический. В целом, тесты показали то, что мы хотели. Делаем выводы самостоятельно. Полный листинг 🌍 #tricks

Резултати

Пронајдени 1 слични објави

Пребарај: #unbrick

当前筛选 #unbrick清除筛选
Nothing Phone (2) | Updates

@NothingPhone2Updates · Post #254 · 01.03.2024 г., 05:33

EDL Unbrick Guide | Nothing Phone (2) [Outdated] Did you mess up your device playing around with flashing tools or pull a "fastboot erase xbl" dance move? Maybe this can help🤣 ⬇️ Download: Links dead 🗒 XDA Thread: Here 🏷 Tags: #Unbrick#EDL ❗️ Requirements: - You need be on a machine running Windows. - Make sure to install the appropriate Qualcomm EDL drivers (Import the .inf file manually after extracting) - If your device can access the bootloader / fastboot, you can proceed using the stock cable. - If your device is unresponsive and cannot be triggered into EDL mode with a button press, a v2 EDL cable is required. ✍️ Instructions: 1. Download the file from the link above. 2. Extract the package. Password is password. 3. Open the NothingFlashTool.exe and run it and then select your phone. 4. Power off your Nothing Phone 2 and then press and hold both the volume keys together to boot into EDL mode. If it does not shows up as Qualcomm HS-USB 9008 under device manager then please install the drivers. For EDL mode volume keys shall work or else you can use a modified cable. 5. Click on Start Button to Flash the phone and let the flashing complete. The phone shall automatically reboot after flash is complete. Note: - Target NOS version post successful flashing is 2.5.1. - DIY for EDL Cable - If the tool stops working or you mess up, dont blame the management here. We dont have any responsibility for the same! 🤓 Provided by: Pong TG Development Team 👤 Posted by: Mvikrant 🐙 Pong Community » CLICK HERE

Hashtags