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

Резултати

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

Пребарај: #gattoverse

当前筛选 #gattoverse清除筛选
TONlines – News

@tonlines · Post #7240 · 16.05.2025 г., 13:37

Gatto Official Channel: Weekend Tournament Begins #GattoVerse#TON The GattoVerse Weekend Tournament kicks off, offering players the chance to win extraordinary prizes, including TON and various resources. The tournament starts on May 16 and ends on May 19. Participants are encouraged to join PvP battles and climb the leaderboard to secure top spots. Source: link @tonlines

TONlines – News

@tonlines · Post #6757 · 14.04.2025 г., 14:29

⚡️Gatto Official Channel: Dive into the GattoVerse NFT Adventure! #GattoVerse#TON GattoVerse welcomes the legendary NFT collection The Doge Pound with a trading volume of over $50,000,000. Join the event "Who let the dogs out?" and obtain new pets by purchasing Diamond Paws, which will transform into unique collectibles in two weeks. Source: link @tonlines

TONlines – News

@tonlines · Post #7186 · 13.05.2025 г., 09:04

⚡️Gatto Channel: Exciting Rewards with Lord Diamondog #GTON#GattoVerse Lord Diamondog has brought silver coins for $GTON, allowing players to purchase them and receive special rewards from the Hat Mouse Shop. Key prizes include treasury gold, spells, and resources for the future Lords of the GattoVerse, with bonus advantages for premium ticket holders. Source: link @tonlines

TONlines – News

@tonlines · Post #7025 · 02.05.2025 г., 13:32

Gatto | Official Channel: Battle in the GattoVerse #GattoVerse#GTON Gatto | Official Channel announces an exciting Weekend Tournament in the GattoVerse. Participants can win marvelous gifts, including various eggs, gold coins, and exclusive Gattoboxes. The tournament starts today and ends on May 5, with a special raffle using Crocottery Tickets. Source: link @tonlines

TONlines – News

@tonlines · Post #7138 · 09.05.2025 г., 12:38

Gatto | Official Channel (18+): Weekend Tournament Details #GattoVerse#Tournament GattoVerse is hosting a high-stakes Weekend Tournament starting today and ending on May 12. Participants in the PvP battles for $GTON can win prizes, including gold coins and exclusive Gattoboxes. Source: link @tonlines

TONlines – News

@tonlines · Post #6875 · 21.04.2025 г., 11:30

Gatto | Official Channel: A New Chapter with Nessie #Nessie#GattoVerse The GattoVerse was once again visited by Nessie, revealed not to be a monster but a protective mother of her species. After hatching her offspring, Nessie passed the responsibility of their care to the event participants who achieved 1000 damage points, rewarding them through the league. Source: link @tonlines

TONlines – News

@tonlines · Post #6766 · 14.04.2025 г., 18:36

Gatto: Upcoming Mine Rescheduling Announcement #Aetherian#GattoVerse Gatto | Official Channel announces a rescheduling of the mine due to a portal opening in the Aetherian world. The next mine event, offering two opportunities with rewards, is scheduled for April 24th. Source: link @tonlines

TONlines – News

@tonlines · Post #6743 · 13.04.2025 г., 18:08

⚡️GattoVerse: A Star Marks a New Beginning #GattoVerse#Aetherian The GattoVerse is on the brink of transformation as a new star promises to illuminate the skies, potentially creating a portal to the ancient Aetherian world. This event could turn legendary tales into reality, and merchant Hat Mouse is poised to seize the moment. Source: link @tonlines