Ранее я уже упоминал о другой фишке из ˍˍ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
😄Cause
➖➖➖➖➖➖
🔘As a verb, cause can mean 'make something happen', usually something bad.
🔜The damage was caused by an earthquake.The damage was caused by an earthquake.
🔘Cause, as a noun can mean 'the reason something happened'.
🔜Bad posture is the cause of your neck pain.Bad posture is the cause of your neck pain.
🔘Cause can mean 'the reason that you feel a particular way'.
🔜Getting that job is a cause for celebration. Getting that job is a cause for celebration.
#cause👨🏫@America
➖➖➖➖➖➖➖➖➖➖➖➖
🆕 Crypto News @Money
😁 Crypto Game @Egame
🇺🇸 US News @America
🇯🇵 Japan News @Japan
🇦🇪 UAE News @Dubai
▶️ Popular Movies @Videos
😜 Best Funny Video @Funnys
😄Cause
➖➖➖➖➖➖
🔘As a verb, cause can mean 'make something happen', usually something bad.
🔜The damage was caused by an earthquake.The damage was caused by an earthquake.
🔘Cause, as a noun can mean 'the reason something happened'.
🔜Bad posture is the cause of your neck pain.Bad posture is the cause of your neck pain.
🔘Cause can mean 'the reason that you feel a particular way'.
🔜Getting that job is a cause for celebration. Getting that job is a cause for celebration.
#cause👨🏫@America
➖➖➖➖➖➖➖➖➖➖➖➖
🆕 Crypto News @Money
😁 Crypto Game @Egame
🇺🇸 US News @America
🇯🇵 Japan News @Japan
🇦🇪 UAE News @Dubai
▶️ Popular Movies @Videos
😜 Best Funny Video @Funnys
#Root#Cause#Garden#Legacy
Join the Root Cause - Garden Legacy beta on ✈️#TestFlight
🔗 Link: https://testflight.apple.com/join/RtdG1Gcv
Shared by Dimitri