Python – How to check the variable’s type?
In Python, we can use type() to check the variable’s type. num = "3.141592653589793238" print(type(num)) pi = float(num) print(type(pi)) Output <class ‘str’> <class ‘float’> References Python docs – type()
In Python, we can use type() to check the variable’s type. num = "3.141592653589793238" print(type(num)) pi = float(num) print(type(pi)) Output <class ‘str’> <class ‘float’> References Python docs – type()