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

Резултати

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

Пребарај: #trailer

当前筛选 #trailer清除筛选
Journey to Fluency

@fluencyinenglish · Post #6861 · 14.02.2019 г., 05:57

‍#trailer ❇️Days Gone 🔹 Plot A global pandemic occurred which decimated the globe, turning millions of humans into feral cannibalistic creatures, called Freakers. The remnants of humanity have abandoned towns to seek refuge in the wilderness creating safe zones. ❇️Aftermath Deacon St. John, a member of the Mongrels MC, is among the survivors of the epidemic. Deacon drifts through the wasteland of the Pacific Northwest, never staying in one place for too long. Deacon often takes work as a Bounty Hunter/Mercenary, offering his services in exchange for supplies. However, Deacon learns that there is a price on his head adding to his list of enemies. @fluencyinenglish @ieltsstrategies

Hashtags

Journey to Fluency

@fluencyinenglish · Post #6282 · 26.07.2018 г., 19:31

‍#trailer ❇️GLASS Trailer (2019) @fluencyinenglish Security guard David Dunn uses his supernatural abilities to track Kevin Wendell Crumb, a disturbed man who has 23 personalities. @fluencyinenglish In the trailer (via THR), Sarah Paulson (American Horror Story series) appears as a psychiatrist who describes herself as someone that specializes in “individuals who believe they are superheroes.” Present among her patients at a Philadelphia asylum are Bruce Willis’ David Dunn, Samuel L. Jackson’s Elijah Price, aka Mr. Glass, and James McAvoy’s Kevin Wendell Crumb, aka The Horde. @fluencyinenglish

Hashtags

Journey to Fluency

@fluencyinenglish · Post #6278 · 25.07.2018 г., 10:08

‍#trailer ❇️The passage @fluencyinenglish The plot: 🔹When a botched U.S. government experiment turns a group of death row inmates into highly infectious vampires, an orphan girl might be the only person able to stop the ensuing crisis. @fluencyinenglish

Hashtags

Journey to Fluency

@fluencyinenglish · Post #6251 · 14.07.2018 г., 13:41

‍#trailer ❇️How It Ends [HD] | Netflix The plot: In the midst of an apocalypse, a man struggles to reach his pregnant wife, who is thousands of miles away. @fluencyinenglish @ieltsstrategies

Hashtags

Viral Today

@viral_today · Post #3229 · 21.11.2024 г., 11:31

The live-action adaptation of the beloved How to Train Your Dragon franchise is set to hit theaters on June 13, 2025 @Viral_Today / #trailer

Hashtags

Viral Today

@viral_today · Post #3032 · 19.09.2024 г., 16:38

Black Mirror Season 7 teaser just dropped This globally popular Netflix series has drawn millions of viewers with its chilling, dystopian stories about the dark side of technology. Past episodes like ‘Bandersnatch’ became worldwide hits, and this new season promises more twists and turns. @Viral_Today / #trailer

Hashtags

Viral Today

@viral_today · Post #2975 · 04.09.2024 г., 14:30

🌐 Warner Bros. has released the first trailer for A Minecraft Movie, which hits theaters in April 2025 and stars Jack Black and Jason Momoa. @Viral_Today / #trailer

Hashtags

123•••1011
ПретходнаСтраница 1 од 11Следна