In order to determine the type of a variable in Python you can make use of the built-in type() function.
Example 1:var = "Code2care"
var_type = type(var)
print(var_type)
Example 2:
var = 22
var_type = type(var)
print(var_type)
Example 3:
var = 22.22
var_type = type(var)
print(var_type)
Example 4:
var = [1, 2, 3]
var_type = type(var)
print(var_type)
Example 5:
var = (1, 2, 3)
var_type = type(var)
print(var_type)
Example 6:
var = {"name": "Sam", "age": 22}
var_type = type(var)
print(var_type)
Example 7:
var ={1, 2, 3}
var_type = type(var)
print(var_type)
Example 8:
var = False
var_type = type(var)
print(var_type)
Example 9:
var = None
var_type = type(var)
print(var_type)
Refer Documentaion: https://docs.python.org/3/library/functions.html#type
Provide Feedback For This Article
We take your feedback seriously and use it to improve our content. Thank you for helping us serve you better!
😊 Thanks for your time, your feedback has been registered!
Comments & Discussion
Facing issues? Have questions? Post them here! We're happy to help!