+ 1
How it is true that (9>=9.0)
5 Respuestas
+ 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...