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

Резултати

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

Пребарај: #r2tbot

当前筛选 #r2tbot清除筛选
Luckydonalds Bots: Development/Status

@luckydonaldsbots · Post #277 · 09.02.2021 г., 02:13

Update for @r2tBot: - Improved performance of v.reddit.com videos - Fixed a bigger bug for not being able to post reddit video after preparing it for sending in some instances - The use of the bot in private channels is now deprecated. Reasoning behind that is that other people can't benefit from it if they can't access it. So for a public (free!) offering that doen't really make sense. If you wanna continue to use it in a private group that consider donating. - New /last_post command to see when the last post was the bot has made. That is usefull for confirming that it is still working. Notice that only actual media posts are listed and channels without new posts on reddit are not taken into account. If it hasn't posted in over an hour you can ask in the support chat. #update#r2tBot

Luckydonalds Bots: Development/Status

@luckydonaldsbots · Post #228 · 23.03.2020 г., 11:07

Emergency Maintainence: I don't know why, but since the weekend the load on my server has doubled. Maybe telelgram is more active as more people are at home. Therefore I'm in the process of upgrading the server. Until the new hardware is in place I'll turn off some non-essencial bots and services: @BassBoostBot, @moustache_bot, @RpAliasBot, @text2voice_bot, @YATubeBot and @r2tBot I will also turn on some alternative derpibooru bots, if you're using @derpyboorubot or @trixieboorubot please use @ponbot instead. For the NSFW @clopclopbot please use @p0nbot instead, I plan on keeping those online for now. #BassBoostBot#moustache_bot#RpAliasBot#derpyboorubot#text2voice_bot#r2tBot#YATubeBot#downtime#issue