TGTGInsighttelegram intelligenceLIVE / telegram public index
← Python Заметки

TGINSIGHT SIMILAR POSTS

Најди сличен содржај

Изворен канал @pythonotes · Post #61 · 2 апр.

Ранее я уже упоминал о другой фишке из ˍˍfutureˍˍ , это оператор деления. from __future__ import division Суть проста. Раньше сложность типа данных результата поределялась типом самого сложного операнда. Например: int/int => int int/float => float В первом случае оба операнда int, значит и результат будет int. Во втором float более сложный тип, поэтому результат будет float. Если нам требуется получить дробное значение при делении двух int то приходилось форсированно один из операндов конверировать в float. 12/float(5) => float Но с новой "философией" это не требуется. В Python3 "floor division" заменили на "true division" а старый способ теперь работает через оператор "//". >>> 3/2 1.5 >>> 3//2 1 То есть теперь деление int на int даёт float если результат не целое число. В классах теперь доступны методы __floordiv__() и __truediv__() для определения поведения с этими операторами. Данный переход описан в PEP238. #pep#2to3#basic

Резултати

Пронајдени 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