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

Резултати

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

Пребарај: #fine

当前筛选 #fine清除筛选

​​🎙 INVEST REPORT Announce #FINEproject update #FINE is Trending first in Dextool. Reaching out Millions of investors. 👉 Order dextool Trend starting with 6500$ per 24 hours 1️⃣ Dextool trending working 2️⃣ Big marketing Campaign incoming 3️⃣ Reached 30 mil mcap 🔜 50 Mil $ Mcap We announced at 9 mil $ Mcap. We just hit 30mil $ mcap and we are getting closer to 100,000,000 Mcap. At the moment we made for you 230% Profit ⚠️Always do your own research and due diligence when considering your participation in any blockchain project.

Hashtags

​​🎙 NEW GEM #FINE I think here is big potential to grow, marketing incoming. 🆘Be careful, put small bag here. Marketcap: 9.5 MIL $ Price now: 0.000000023618598849591634 $ 1️⃣Dextool trending working, order Dextool Trending 2️⃣Big marketing Campaign incoming ✅ More information Telegram: https://t.me/+YIevhi57q2phY2Y6 Website:https://www.finerc.vip/ 👉 BUY HERE: https://www.dextools.io/app/en/ether/pair-explorer/0xb54ce26f2e30f64c5b684b141311ce138ab5e00e 🧨 Push cooperating with@Whales100xsignals #MEMECOIN#GEM

NIDO Russia (НИДО)

@nido_russia · Post #1923 · 11.12.2024 г., 09:54

The increase in fines for a number of traffic violations will come into force on January 1, 2025 📌"In Article 2, the word" Law "should be replaced with the words "Federal Law", the words "after thirty days from the date of its official publication" should be replaced with the words "from January 1, 2025," the text of the amendment posted in the Duma electronic database says. 📌Under this law, failure by a driver to perform the duty to insure his civil liability, as well as driving a vehicle, if the Compulsory third Party Insurance (CTP) policy is deliberately absent, entails the imposition of an administrative fine in the amount of 800 rubles. 📌Earlier, the Parliament of the Kabardino-Balkar Republic submitted to the State Duma a bill that proposes to establish a fine for repeated violation of the Administrative Code of the Russian Federation, namely the absence of a driver's CTP policy, up to 5 thousand rubles. CTP policy means Compulsory Third Party Insurance Policy #news#russia#nido_russia#traffic#fine#regulations https://t.me/nido_russia