You've already forked Core2forAWS-MicroPython
mirror of
https://github.com/m5stack/Core2forAWS-MicroPython.git
synced 2026-05-20 10:30:31 -07:00
23 lines
288 B
Python
23 lines
288 B
Python
|
|
# Extended float comparisons
|
||
|
|
|
||
|
|
class Foo:
|
||
|
|
pass
|
||
|
|
|
||
|
|
foo = Foo()
|
||
|
|
|
||
|
|
print(foo == 1.0)
|
||
|
|
print(1.0 == foo)
|
||
|
|
print(1.0 == Foo)
|
||
|
|
print(1.0 == [])
|
||
|
|
print(1.0 == {})
|
||
|
|
|
||
|
|
try:
|
||
|
|
print(foo < 1.0)
|
||
|
|
except TypeError:
|
||
|
|
print("TypeError")
|
||
|
|
|
||
|
|
try:
|
||
|
|
print(1.0 < foo)
|
||
|
|
except TypeError:
|
||
|
|
print("TypeError")
|