How can I limit the number of characters and type of characters that can be inputted.
s = input('What is your number)
a number can only be 9 digits so it should be limited to 9 digits and only numbers
x = input('what is your email address)
an email address can contain a minimum of 8 characters and a maximum of 60 characters and also must contain an @ symbol.
How would I go about doing this?
lenofsand/orx