Numbers
x = input("Enter any number : ")
#input() function is used to have input on console.
y = input("Enter any number : ")
z = input("Enter any number : ")
print(type(x))
#type(object) function returns the type of object.
print(type(y))
#print() is a function that outputs to your console window.
print(type(z))
Last updated