how to check a variable type in python code example
Example 1: how to check the type of a variable in python
print(type(x))
Example 2: check type of variable in python
str = "Hello"
type(str)
print(type(x))
str = "Hello"
type(str)