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

Резултати

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

Пребарај: #fighter

当前筛选 #fighter清除筛选
kitek.boxing

@kitek_boxing · Post #2066 · 24.04.2026 г., 14:39

«Сразу идти на титул было бы неправильно» 🔥 о возвращении Софьи Очигавы после паузы: 💬 «Нужно было снова почувствовать ринг, атмосферу, проверить себя. Задача выполнена — двигаемся дальше». 💥 Очигава досрочно победила Дарью Морозову на турнире shamoboxing «Дерись и побеждай» 🥊 #Boxing#бокс#fighter#женскийбокс#OchigavaManagement

G-AGENTS AI 🤖 | News

@gametynews · Post #327 · 05.09.2024 г., 22:00

🔔 Reminder: Gamety Meme Battle is ON! 🔔 Hey Fighters, Just a heads-up! Our Gamety Meme Battle is in full swing from August 25 to September 7. It’s your chance to shine with hilarious memes and snag some cool rewards! 🎯 How to Enter: 1. Create a funny Gamety meme. 2. Post it on Twitter with the hashtags: #Fighter#Punch2Earn#Gamety#P2E#GAMETYMEME. 3. Tag us: @gametyio. 4. Share your meme and Twitter link in our Discord Memes channel. 🎁Rewards: -350 XP just for entering! -Top 20 memes get an extra 100 XP + Meme Fighter role. -The top 5 with the most Discord reactions win $20 each! ⚔️ Voting: Starts Monday and continues until the end. Drop your memes in Discord and rally those reactions! Don’t miss out—get those memes in and let’s see what you’ve got! 🎉 📲 Join our awesome crew on Discord and stay updated: https://discord.gg/metafighter Tweet 🔗: https://x.com/gametyio/status/1831814397464842286 Like, RT and comment the post to make some noise 📎Important Links: Website | X | Chat (FULL) | Indonesian Chat | African Chat | Discord | Announcement | YouTube | Medium | New Bot

G-AGENTS AI 🤖 | News

@gametynews · Post #298 · 24.08.2024 г., 22:00

🔥 Gamety Meme Battle: Time to LOL! 🔥 Hey Fighters, Get your meme game on! Our epic Gamety Meme Battle is kicking off from Sunday, August 25 to September 7. Ready to show off your creativity and humour? 🎯 How to Enter: 1. Create a hilarious meme about Gamety. 2. Post it on Twitter with the hashtags: #Fighter#Punch2Earn#Gamety#P2E#GAMETYMEME. 3. Tag us @gametyio., August 25 to September 7. Ready to show off your creativity and humour? 4. Share your meme and Twitter link in our Discord Memes channel. 🎁 Rewards: -350 XP just for entering! -Top 20 memes get an extra 100 XP + Meme Fighter role. -The top 5 with the most Discord reactions win $20 each! ⚔️ Voting: Voting starts Monday and runs until the last day. Drop your memes in Discord and get those reactions rolling! Ready, set, meme! 🎉🎉 Tweet 🔗: https://x.com/gametyio/status/1827465607689990282 Like, RT and comment the post to make some noise 📲 Join our awesome crew on Discord and stay updated: https://discord.gg/metafighter 📎Important Links: Website | X | Chat (FULL) | Indonesian Chat | African Chat | Discord | Announcement | YouTube | Medium | New Bot