python float operations code example
Example 1: float inf in python
float('inf')
float('-inf')
Example 2: float python
#Float or int like this - 2.6, 5.7, 1.89 etc
a = 90.7
print(a, 'is a float')
float('inf')
float('-inf')
#Float or int like this - 2.6, 5.7, 1.89 etc
a = 90.7
print(a, 'is a float')