check if is instance of string python code example
Example 1: how to check the type of a variable in python
print(type(x))
Example 2: is instance string python
isinstance(x, int)
isinstance(s, str)
print(type(x))
isinstance(x, int)
isinstance(s, str)