Write a statement that asks the user to enter the year and convert it to an integer. Store the resulting information in a variable called year.
# Write a statement that asks the user to enter the year and convert it to an integer.
# Store the resulting information in a variable called year.
Year = int(input("Enter the year: "))
print("\nThe entered year is : ",Year)
Comments
Leave a comment