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

Резултати

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

Пребарај: #tropics

当前筛选 #tropics清除筛选
Amazing Geography 🌍

@amazingeo · Post #664 · 17.03.2026 г., 20:31

🌍 In Borneo’s rainforests, some fig trees act as “keystone species”—their fruit ripens year-round, feeding dozens of animal species when other food is scarce. ✨ #rainforest⚡#biodiversity⚡#tropics⚡#geography⚡#nature⚡#earth 👉subscribe Amazing Geography 👉more Channels ​

Amazing Geography 🌍

@amazingeo · Post #435 · 05.11.2025 г., 12:31

🌍 Some tropical rainforests can hold over 400 different tree species in a single hectare—more tree diversity in one spot than all of Europe’s forests combined. ✨ #rainforest⚡#biodiversity⚡#tropics⚡#geography⚡#nature⚡#earth 👉subscribe Amazing Geography 👉more Channels ​

Amazing Geography 🌍

@amazingeo · Post #322 · 02.10.2025 г., 12:31

🌍 In some tropical rainforests, certain trees release chemicals that prevent other plants from growing near them, creating clear zones called "root exclusion areas" on the forest floor. ✨ #rainforest⚡#tropics⚡#biodiversity⚡#geography⚡#nature⚡#earth 👉subscribe Amazing Geography 👉more Channels ​

Amazing Geography 🌍

@amazingeo · Post #282 · 22.09.2025 г., 15:31

🌍 More than half of the world’s known plant and animal species live in tropical rainforests, even though these forests cover less than 7% of Earth’s land surface. ✨ #rainforest⚡#biodiversity⚡#tropics⚡#geography⚡#nature⚡#earth 👉subscribe Amazing Geography🌍 ​

Amazing Geography 🌍

@amazingeo · Post #131 · 28.08.2025 г., 09:12

🌍 Some rainforests get over 9 meters of rain each year. The Amazon alone releases so much water through plant transpiration that it creates its own cloud systems, influencing weather far beyond its borders. ✨ #rainforest⚡#tropics⚡#climate⚡#geography⚡#nature⚡#earth 👉subscribe Amazing Geography🌍 ​

Amazing Geography 🌍

@amazingeo · Post #509 · 12.12.2025 г., 12:31

🌍 In tropical rainforests, some plant leaves grow waxy surfaces and pointed tips called "drip tips." These features help water run off quickly, stopping mold and fungi in the damp climate. ✨ #rainforest⚡#tropics⚡#adaptation⚡#geography⚡#nature⚡#earth 👉subscribe Amazing Geography 👉more Channels ​

Amazing Geography 🌍

@amazingeo · Post #368 · 13.10.2025 г., 18:31

🌍 Costa Rica’s biodiversity hotspot holds more plant species in just one hectare than most European countries have nationwide, showcasing how concentrated life can be in these rare regions. ✨ #biodiversity⚡#conservation⚡#tropics⚡#geography⚡#nature⚡#earth 👉subscribe Amazing Geography 👉more Channels ​

Amazing Geography 🌍

@amazingeo · Post #26 · 10.08.2025 г., 14:02

🌍 The Tropic of Cancer (23.5° north) and Tropic of Capricorn (23.5° south) are the farthest points from the Equator where the Sun can be directly overhead at noon each year. ✨ #latitude⚡#sunlight⚡#tropics⚡#geography⚡#nature⚡#earth 👉subscribe Amazing Geography🌍