How it is true that (9>=9.0) | Sololearn: Learn to code for FREE!
Новый курс! Каждый программист должен знать генеративный ИИ!
Попробуйте бесплатный урок
+ 1

How it is true that (9>=9.0)

5th Dec 2018, 8:42 AM
Uma
Uma - avatar
5 ответов
+ 4
>= 'greater or equal' operator 9 > 9.0 -> false 9 == 9.0 -> true 9 >= 9.0 -> true
5th Dec 2018, 8:55 AM
Boris Batinkov
Boris Batinkov - avatar
+ 10
Uma 👍😉 You are welcome! 😊 Have a nice Coding! ;)
5th Dec 2018, 11:40 AM
Danijel Ivanović
Danijel Ivanović - avatar
+ 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/
5th Dec 2018, 10:29 AM
Danijel Ivanović
Danijel Ivanović - avatar
+ 3
Thanks boris
5th Dec 2018, 11:32 AM
Uma
Uma - avatar
+ 2
Thanks danijel I got it now...
5th Dec 2018, 11:32 AM
Uma
Uma - avatar