+ 3
Limit Alphabetic Characters in phyton 3 then Loop
how to type Alphabet only in input. then loop. example. while 1: a = input("Name") if (a)<("abcdefghijklmnopqrstuvwxyz"):break else: print("invalid") or import re while 1: a= input("Name") if not re.match("^[A-Za-z]
quot;): break else: print ("invalid") please make me code for that. because when i input: rigel12. it is to be wrong.1 Resposta
+ 1
Look at this
https://code.sololearn.com/cHHryFgycp4U/?ref=app