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

Резултати

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

Пребарај: #gatto

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

@tonlines · Post #7346 · 23.05.2025 г., 14:36

Gatto Official Channel: Weekend Tournament and PvP Event #Gatto#TON Gatto is hosting a weekend tournament alongside a PvP event against its developers, launching on May 23. Players will have the chance to win various rewards by competing in both events, with the tournament ending on May 26 and the PvP event concluding on May 23. Source: link @tonlines

Hashtags

TONlines – News

@tonlines · Post #7213 · 14.05.2025 г., 14:31

Support Gatto in Telegram Apps Center Voting #Telegram#Gatto Gatto | Official Channel encourages users to vote for the Gatto app in the Telegram Apps Center. By participating, users can win Telegram Gifts or Telegram SBT and help raise their favorite app to the top. Source: link @tonlines

TONlines – News

@tonlines · Post #7429 · 29.05.2025 г., 09:23

⚡️Gatto Announces Temporary NFT Feature Downtime #NFT#Gatto Gatto | Official Channel (18+) informs users of a temporary halt to NFT functionality, citing ongoing technical resolutions which will last more than a day. Users are advised not to purchase Gattomon Eggs created between 5:00 p.m. and 6:30 p.m. UTC due to potential game recognition issues. Source: link @tonlines

Hashtags

TONlines – News

@tonlines · Post #7427 · 28.05.2025 г., 20:01

⚡️Gatto: NFT Minting Temporarily Unavailable #NFT#Gatto Gatto announces that NFT minting is currently on hold. Users are advised not to create NFT pets and eggs to avoid permanent loss. Updates will be shared once technical work concludes. Source: link @tonlines

Hashtags

TONlines – News

@tonlines · Post #7697 · 03.12.2025 г., 15:46

Gatto | Official Channel: Creative Contest Announcement #Gatto#GTON Gatto | Official Channel has announced a creative contest to celebrate a birthday, inviting talented individuals to participate by creating drawings, stories, and crafts dedicated to Gatto. Participants are categorized by age, with the chance to win $GTON rewards. Submissions are open until December 8th. Source: link @tonlines

Hashtags

TONlines – News

@tonlines · Post #6778 · 15.04.2025 г., 13:50

⚡️Gatto Official Channel: PvP Battle Event with Rewards #GTON#Gatto The Gatto Official Channel invites players to join a special PvP event starting at 14:00 UTC. Participants who defeat the GTeam in consecutive battles can earn various rewards, including Silver Coins, Legendary Gattoboxes, and more. The event takes place exclusively on the European server and runs until April 15, 15:00 UTC. Source: link @tonlines

Hashtags

TONlines – News

@tonlines · Post #7394 · 27.05.2025 г., 18:20

⚡️Gatto: Temporary Unavailability of the Game #Gatto#game The Gatto team has announced that the game is currently unavailable due to server issues. They are actively working to resolve the problems, and the game will be restored soon. Source: link @tonlines

Hashtags

TONlines – News

@tonlines · Post #7267 · 18.05.2025 г., 19:12

Gatto: Upcoming Technical Works Announced #Gatto#game Mr. Chipmunkus will be performing technical work on the Gatto game starting at 20:30 UTC. Although the game will remain accessible, players might encounter some bugs during this period. Source: link @tonlines

Hashtags

TONlines – News

@tonlines · Post #7118 · 08.05.2025 г., 19:37

Expand Your Play Area with Gatto Official Channel! #Gatto#game Gatto Official Channel introduces a new opportunity to expand the playing field from 40 to 42 squares by inviting friends. Players can unlock new plain and ice biomes with eggs after their friends complete training by Sage Moc. Source: link @tonlines

Hashtags

TONlines – News

@tonlines · Post #6987 · 30.04.2025 г., 14:43

Technical Update at Gatto | Official Channel #Gatto#game Gatto | Official Channel has scheduled technical work with Mr. Chipmunkus. Players may experience some bugs until the game operations return to normal. Source: link @tonlines

Hashtags

TONlines – News

@tonlines · Post #6955 · 29.04.2025 г., 08:12

Gatto: Ongoing Technical Works #Gatto#game Gatto is undergoing technical maintenance by Mr. Chipmunkus. Though the game remains accessible, players might encounter some bugs until everything is fully restored. Source: link @tonlines

Hashtags

TONlines – News

@tonlines · Post #6925 · 24.04.2025 г., 12:42

⚡️Gatto: Temporary Downtime for Technical Maintenance #Gatto#game Gatto | Official Channel announces upcoming technical maintenance by Mr. Chipmunkus after mine completion. The game will be unavailable today from 13:00 UTC. Source: link @tonlines

Hashtags

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