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

Резултати

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

Пребарај: #mma

当前筛选 #mma清除筛选
Viral Today

@Viral_Today · Post #1197 · 08.02.2021 г., 00:00

Never give up. Cheick Kongo had the greatest comeback during his fight against Pat Barry YouTubeNews/ #MMA

Hashtags

Main Event | Sport News

@maineventnews · Post #4 · 16.07.2024 г., 06:01

A UFC Fight Completely Split the Russian Heavyweights. Volkov Continues to Troll Pavlovich Unexpectedly. It's been just under a month since the bout between two top Russian heavyweights in the UFC, Alexander Volkov and Sergei Pavlovich. By now, most people who were anxious about the fight between our compatriots have likely digested the event (as well as Volkov’s victory, which few expected). Changes in Rankings The rankings now look familiar in their relatively new configuration (Volkov is now ranked third in the heavyweight division, while Pavlovich is fifth), and each of the participants in the recent clash seems to be moving on. However, from time to time, references to the fight still surface among fans—and in the social media posts of the former opponents themselves. Altered Relationships It’s also curious (and somewhat sad) that the relationship between Volkov and Pavlovich has evidently changed. Volkov has continued to troll Pavlovich, keeping the tension between them alive. #MMA 👁Subscribe to Main Event | Sport News

Hashtags

Viral Today

@viral_today · Post #3019 · 16.09.2024 г., 10:30

UFC 306 at the Sphere was a massive success with the UFC investing over $20 million to produce the show. The event was the first of its kind, with audience members being able to feel punches through haptic feedback in the seats. — Ticket prices ranged from $1,000 to $17,000. — Total capacity: 18,000. — The Sphere uses the power of 21,000 homes, with 70% coming from solar energy. @Viral_Today / #wow#mma

Hashtags

Viral Today

@viral_today · Post #2539 · 08.06.2024 г., 10:30

Eddie Hall, a former World's Strongest Man, took on the Neffati brothers in a 2 vs. 1 MMA match. The fight, part of the World Freak Fight League, showcased Hall's immense strength as he faced two opponents simultaneously. Watch the intense highlight of this unique and thrilling match! @Viral_Today / #MMA#wow

Hashtags

Main Event | Sport News

@maineventnews · Post #72 · 19.07.2024 г., 14:03

Israel Adesanya is in great shape 🔥 Izzy continues to prepare for the title fight against Dricus Du Plessis and plans to reclaim the belt. Their fight will headline UFC 305, which will take place on August 18 in Australia. #MMA #UFC 👁Subscribe to Main Event | Sport News

Hashtags

EdgeMarket.AI 📣

@edgemarketai · Post #8011 · 05.03.2026 г., 11:12

Max Holloway vs Charles Oliveira. 5 rounds. Lightweight. Who leaves with the belt? Volume vs submissions. Pressure vs danger. My question: Can Max survive Charles early enough to drown him late? #UFC#MMA

Hashtags

Main Event | Sport News

@maineventnews · Post #52 · 17.07.2024 г., 12:00

Diaz Sues Organizers of Fight with Masvidal #box#mma Nate Diaz has filed a lawsuit against the organizers of the fight with Jorge Masvidal. Nate claims he had an agreement for a $10,000,000 payout for the fight. He received an advance payment of $1,000,000, with the remaining $9,000,000 to be paid after the fight. The lawsuit states that the company is refusing to make the payments, claiming that the event was unprofitable. 👁Subscribe to Main Event | Sport News

Hashtags

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