Python type() vs typeof: Check Data Types Correctly
typeof is not a built-in function in Python, it is correct to use the type function to get the type of an object. The type function returns the type of an object. For example:
x = 5
print(type(x))  # <class 'int'>
y = "Hello"
print(type(y))  # <class 'str'>
z = [1, 2, 3]
print(type(z))  # <class 'list'>