I have read that python avoids the loss of data in Implicit Type Conversion.
Isn't below code converts float literal to integer and then compare it through list? Isn't it loss of data value?
list1 = [10, 20, 30]
print(30.0000000000000000000000000000000001 in list1)
Above code prints true