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

  1. Python docs – type()

No comments yet. Be the first to leave a comment!

Leave a Comment

Your email address will not be published. Required fields are marked *