none data type:
when type function is given it displays the value of the data type.if there is nothing represented it means none data type.
name = input("Enter your name: ")
print("Welcome to Python", name)
print(type(name))
Enter your name: RAJA
Welcome to Python RAJA
Top comments (0)