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

Резултати

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

Пребарај: #blackandwhite

当前筛选 #blackandwhite清除筛选
Press TV Shows

@PresstvPrograms · Post #4911 · 06.09.2025 г., 15:06

🔺“Yemen does not kneel. It responds.” Yemen shows steadfast solidarity with Palestine, proving through sacrifice and resistance what true commitment to justice means. Watch in full #BlackAndWhite @PresstvPrograms

Press TV Shows

@PresstvPrograms · Post #4907 · 05.09.2025 г., 06:01

🔺Nicola Hadwa argues that Israel faces collapse in population, economy, and legitimacy, while Palestinian resistance grows stronger. Watch in full #BlackAndWhite @PresstvPrograms

Press TV Shows

@PresstvPrograms · Post #4906 · 05.09.2025 г., 05:02

🔺“Israeli regime cannot exist in peace” Nicola Hadwa states that the Palestinian resistance fights bravely against the Israeli regime over the past two years, emphasizing the regime’s failure to achieve its goals. Watch in full #BlackAndWhite @PresstvPrograms

Press TV Shows

@PresstvPrograms · Post #4905 · 05.09.2025 г., 04:00

🔺“Yemenis are fierce fighters who do not know the meaning of defeat” According to Nicola Hadwa, Saudi Arabia and the UAE are complicit in the Israeli regime's crimes against the Yemeni people. Watch in full #BlackAndWhite @PresstvPrograms

Press TV Shows

@PresstvPrograms · Post #4901 · 03.09.2025 г., 06:06

🔺”Yemen showed that Israel’s army is not invincible” Nicola Hadwa points out that Yemen has shown that the child-killing entity, Israel, is not an invincible army and is, in fact, a considerably a weaker army. Watch in full #BlackAndWhite @PresstvPrograms

Press TV Shows

@PresstvPrograms · Post #4897 · 01.09.2025 г., 18:49

🔺 Nicola Hadwa explains why Yemen’s role in supporting the Palestinians is truly impressive and remarkable. Watch in full #BlackAndWhite @PresstvPrograms

Press TV Shows

@PresstvPrograms · Post #4893 · 01.09.2025 г., 16:04

🔺"Out of every 10 words from the West, 15 are lies." Nicola Hadwa exposes Western media’s demonization of Yemen, highlighting the nation’s resilience as a symbol of anti-imperial resistance. Watch in full #BlackAndWhite @PresstvPrograms

Press TV Shows

@PresstvPrograms · Post #4889 · 01.09.2025 г., 11:55

🔺Yemen, though poor and besieged, embodies defiant solidarity, transforming its suffering into a force for resistance against oppression. Watch in full #BlackAndWhite @PresstvPrograms

Press TV Shows

@PresstvPrograms · Post #4884 · 31.08.2025 г., 16:20

🔺 Yemen does not give up From Yemen, in a show of solidarity with the Palestinian cause, ships associated with the Zionist entity and imperialism are being targeted, disrupting the transfer of goods and products that would support the Israeli regime and its trade. Watch in full #BlackAndWhite @PresstvPrograms

Press TV Shows

@PresstvPrograms · Post #4804 · 16.08.2025 г., 07:03

🔺"Cuba will not give up" Carmen Esquivel emphasizes that Cuba remains steadfast in defending its sovereignty against external challenges. Watch in full #BlackAndWhite @PresstvPrograms

Press TV Shows

@PresstvPrograms · Post #4797 · 15.08.2025 г., 07:02

🔺According to Carmen Esquivel, Cuba must strengthen ideology, media, and social unity to protect its socialist revolution. Watch in full #BlackAndWhite @PresstvPrograms

Press TV Shows

@PresstvPrograms · Post #4792 · 13.08.2025 г., 13:12

🔺Carmen Esquivel highlights the potential of BRICS partnerships to boost Cuba’s development and wealth. Watch in full #BlackAndWhite @PresstvPrograms

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