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

Резултати

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

Пребарај: #nostalgia

当前筛选 #nostalgia清除筛选
Comping_Uz

@Comping_Uz · Post #4993 · 08.12.2025 г., 16:11

#nostalgiaMahalladagi 10ta kompyuteri bor kompyuterxona, soati 500 so'm bo'lgan paytlar va bir talay o'yinlar😄 ➖➖➖➖➖➖➖➖➖ 📍Manzil: [ Kichik halqa yo'li 8A ] ⏰ Ish vaqti: [10:00 dan 20:00] 📞 +998338082030 🔵@Comping_admin ➖➖➖➖➖➖➖➖➖ 🔵Telegram📷Instagram🟥Youtube

Hashtags

🦅 [ perspective ix ]

@perspectiveix · Post #1119 · 20.02.2018 г., 19:00

​​💿 The Rise and Fall of the Compact Disc Having been hit by the rise of MP3 players in the early 2000s, #CD sales nearly halved between 2000 and 2007, which is when smartphones and the first music streaming services emerged to put the final nail in the compact disc’s little round coffin. #Nostalgia 🚀@PerspectiveIX 🌀 ⁣http://prs.pctvix.co/TelegramIX

AWTH

@wall_amv · Post #8697 · 18.04.2024 г., 10:50

Anime: Digimon Adventure 2020, Digimon Adventure Tri, Digimon Tamers, Eden, Ef: A Fairy Tale of the Two, Mobile Suit Gundam 00, Shakugan no Shana Music: Digimon - Butter-fly (Tri Version) #Amv #Digimon #Mix #Action #Nostalgia #AnimWorld @Wall_Amv

NewUU Student Council

@newuu_sc · Post #606 · 16.05.2023 г., 19:25

✨Get ready for a blast from the past! It's Retro Day! 🎮🎶 Mark your calendars for May 18, this Thursday, as we transport ourselves back to the magical era of our childhood. 🌟 Join us for a day filled with nostalgia, colorful retro games, and the iconic music that defined our younger years. 🕹🎵 We've curated an exciting lineup of classic games that will make you feel like a kid again. From Tetris to Domino, there's something for everyone to enjoy! Let's relive those epic gaming moments together. 🎮👾 Don your favorite retro outfits and get ready to immerse yourself in the vibrant atmosphere of our childhood. From neon colors to leg warmers, let's embrace the fashion trends that defined an era. It's time to bring back the style! 👕👖 Date: May 18, Thursday Time: Whole day Location: New Uzbekistan University Spread the word and let's make this Retro Day a celebration of our shared past! See you there! 🎉✨ #RetroDay#Nostalgia#ChildhoodMemories Best Regads, Student Government.

First Love Should Be Forever... Right? 💔#shorts#cinema#firstlove#loveforever#heartbreak#romance#relationships#emotions#cinematic#lovequotes#drama#nostalgia#movingon https://pdmovies.substack.com/p/the-big-combo-1955

Yukiokhruner

@yukiokhruner · Post #15 · 05.04.2022 г., 16:16

L'attaccamento agli oggetti é uno degli ostacoli maggiori per la nostra felicità, come se infondessimo in essi parte della nostra anima. #vaporonda#vaporwave#vapourwave#vaporart#seapunk#webpunk#glitch#glitchart#glitchartistscollective#chillwave#aesthetic#vaporwaveaesthetic#vaporwaveaesthetics#malinconia#melancholy#tristezza#sadness#sadboy#lofi#disagio#nostalgia#illusione#illusion#windows95#windows98#windowsxp

12
ПретходнаСтраница 1 од 2Следна