+ 1
How it is true that (9>=9.0)
5 Answers
+ 4
>= 'greater or equal' operator
9 > 9.0 -> false
9 == 9.0 -> true
9 >= 9.0 -> true
+ 10
Uma đđ
You are welcome! đ
Have a nice Coding! ;)
+ 7
Comparison:
The greater than or equal to, and smaller than or equal to operators are >= and <=.
They are the same as the strict greater than and smaller than operators, except that they return ăTrueă when comparing equal numbers.
You should try on Code playground to practice!
print(7 <= 8)
print(9 >= 9.0)
https://www.sololearn.com/learn/JUMP_LINK__&&__Python__&&__JUMP_LINK/2276/
+ 3
Thanks boris
+ 2
Thanks danijel I got it now...