Ранее я уже упоминал о другой фишке из ˍˍ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
#REI/USDT analysis :
The price of #REI has tested and bounced back from a support zone that has been tested multiple times. It's anticipated to move upward to higher levels. For a long entry, wait for a retracement.
TF : 1H
Entry : $0.02464
Target : $0.02683
SL : $0.02360
#REI/USDT analysis :
#REI has broken out and retested the previously respected support zone. The price is expected to decline from this level and resume its bearish momentum, potentially testing lower levels.
TF : 1H
Entry : $0.04800
Target : $0.04620
SL : $0.04943
#REI/USDT analysis :
#REI has bounced back from the support zone after a correction phase till the 200 EMA. Price is now expected to keep up its bullish vibe and test the previous swing high.
TF : 1H
Entry : $0.0591
Target : $0.0657
SL : $0.0543
#REI/USDT analysis :
#REI just went below the support levels, which is now acting as resistance for the price. It's expected that the price is going test the previous swing low support level.
TF : 1h
Entry : $0.0563
Target : $0.0519
SL : $0.0594
#REI/USDT analysis -
#REI is in a downtrend. Currently, the price is consolidating above support levels after a pullback. The price is attempting to break through these support levels, and it is expected to do so soon. Wait for the 1-hour candle to close below the level, and then enter on the retest of the price in the marked zone. The previous swing low will be the target.
TF : 1h
Entry : $0.04995
Target : $0.04767
SL : $0.05143