Python Numbers
Python supports basic numeric type int and float.
a = 10 #int
b = 10.5 #float
Python also supports decimal, fraction and complex numeric types.
Python supports basic numeric type int and float.
a = 10 #int
b = 10.5 #float
Python also supports decimal, fraction and complex numeric types.