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

Резултати

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

Пребарај: #legendary

当前筛选 #legendary清除筛选
Everything Science

@everything_science · Post #3857 · 31.12.2025 г., 08:54

Tired of getting viruses? Do this. Clean your motherboard daily to make sure those viruses get wiped off your computer forever. #legendary 🔔@Everything_Science

Hashtags

Everything Science

@everything_science · Post #3435 · 05.05.2025 г., 07:49

By writing "sorry" at the bottom of your math test, your teacher will feel sorry for you and probably pass you. #Legendary 🔔@Everything_Science

Hashtags

Everything Science

@everything_science · Post #3350 · 23.03.2025 г., 09:37

Virgin Airlines has announced that from July 2017 they will also be accepting passengers who are not virgins any more. #Legendary 🔔@Everything_Science

Hashtags

Everything Science

@everything_science · Post #3344 · 19.03.2025 г., 18:14

This poor man passed away yesterday when his family couldn't remember his blood type. As he died, he kept insisting for his children to "be positive" What a caring father. A loving man. #Legendary 🔔@Everything_Science

Hashtags

Everything Science

@everything_science · Post #3273 · 10.02.2025 г., 18:25

During child birth, the pain is so intense that women are almost capable of feeling what a man feels when he hears "I love you as a friend" #Legendary 🔔@Everything_Science

Hashtags

Everything Science

@everything_science · Post #3264 · 04.02.2025 г., 11:03

"Peeing in the sink is actually the green way to go, so you're welcome. Instead of wasting 1.6 gallons of water on a flush, you pee in the sink. You then wash your hands in that very same sink, simultaneously washing down the urine and preserving nature's most precious resource." #Legendary 🔔@Everything_Science

Hashtags

Everything Science

@everything_science · Post #3257 · 02.02.2025 г., 07:41

PEARL HARBOR was an inside job, there's no way Japanese planes could've flown THIS distance in 1931. Wake up retards and realise your government has been lying to you, JAPAN is innocent #Legendary 🔔@Everything_Science

Hashtags

Everything Science

@everything_science · Post #3255 · 01.02.2025 г., 07:43

Did you know ? In the 90s Arsenal Soccer Club had a player called David Dicks. When he was injured, the Newspaper wrote"Arsenal to play without Dicks". The coach was upset so the Newspaper changed the headline to read "Arsenal to play with Dicks out"... A record number of women attended the match. #Legendary 🔔@Everything_Science

Hashtags

Everything Science

@everything_science · Post #3248 · 30.01.2025 г., 08:16

name ur daughter lizard then give her the nickname Liz and people will b like oh that's short for Elizabeth? and she'll be like no my name is lizard #Legendary 🔔@Everything_Science

Hashtags

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