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

Резултати

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

Пребарај: #country

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

@everything_science · Post #3429 · 01.05.2025 г., 15:50

This is an indoor pig farm in Hubei, China, housing almost 1 million pigs. The pigs never see the outside. #Country 🔔@Everything_Science

Hashtags

Everything Science

@everything_science · Post #3428 · 01.05.2025 г., 05:45

Japanese man's dream Ferrari burned down just 1 hour after he bought it after 10 years of saving💔 #Country 🔔@Everything_Science

Hashtags

Everything Science

@everything_science · Post #3416 · 26.04.2025 г., 16:51

Students are required to wear anti cheating headgear during their midterm exam in a university in the Philippines #Country 🔔@Everything_Science

Hashtags

Everything Science

@everything_science · Post #3408 · 22.04.2025 г., 19:43

In Switzerland, if you fail your practical driver’s license test 3 times, you are required to consult an official psychologist to assess the reasons for your previous failures before you are allowed to retake the exam. #Country 🔔@Everything_Science

Hashtags

Everything Science

@everything_science · Post #3404 · 19.04.2025 г., 20:28

Indian army spent 6 months watching "Chinese spy drones," which actually were the planets Jupiter & Venus. #Country 🔔@Everything_Science

Hashtags

Everything Science

@everything_science · Post #3379 · 05.04.2025 г., 19:21

Saudi arabia is turning the Desert green With a bold plan to plant 10 Billion trees, they're leading the fight against climate change. #Country 🔔@Everything_Science

Hashtags

Everything Science

@everything_science · Post #3360 · 29.03.2025 г., 20:24

Ugandan Politician, Evelyn Anite took back an ambulance she donated to her district, after losing an election in 2021. #Country 🔔@Everything_Science

Hashtags

Everything Science

@everything_science · Post #3354 · 25.03.2025 г., 16:15

In Spain, it is a tradition for hunters to kill their Spanish Greyhound hunting dogs at the end of the hunting season. Young healthy dogs are hung, shot, maimed and/or strangled and left to die. #Country 🔔@Everything_Science

Hashtags

Everything Science

@everything_science · Post #3349 · 22.03.2025 г., 12:17

Moscow street dogs display specialized behaviors that differentiate them from domesticated dogs & wolves: pack leaders tend to be the most intelligent rather than the strongest, and packs tend to deploy its cuter members first, as they are more successful in begging for food from people. #Country 🔔@Everything_Science

Hashtags

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