The user can only input a string nothing else(no dots or numbers etc).How to do that? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

The user can only input a string nothing else(no dots or numbers etc).How to do that?

The other issue is when a user types in a wrong input he should be given a new chance to try again AND it shouldnt count as an attempt inside the for loop. Meaning a user can type in an infinite number of wrong inputs(a number for example) but it will only count as an attempt when he types in the right way of input(meaning a string). If he for example types in 5 different names,the loop would end. https://code.sololearn.com/c7PoEd2A8I1X/?ref=app

25th Feb 2022, 7:33 PM
Lenoname
9 Answers
+ 1
Create a helper function to check your validation of the input(). You can then use a while loop inside the for loop that will repeat the input() ability until you receive a valid input. Just make a variable before the while loop and give it an initial value that isn't valid, like None or ''. Then pass the value to the helper function to check if it is valid. def valid_input(inp): ... # perform checks return False # not valid return True # valid for _ in range(5): inp = None while not valid_input(inp): inp = input()
25th Feb 2022, 8:02 PM
ChaoticDawg
ChaoticDawg - avatar
+ 1
Lenoname You may not need the try-except, unless this is some challenge, module project or practice requiring it. In which case, please be more specific with your question and give these details. By checks, I mean checking to see if the input string value contains what is required or has some character that should not be included etc. For instance if the value is an empty string, has punctuation when it shouldn't, contains numbers when it shouldn't, is None, does or doesn't match a specific regex pattern, etc. Whatever your qualifiers are for a valid string.
26th Feb 2022, 1:03 AM
ChaoticDawg
ChaoticDawg - avatar
+ 1
Ya, you misunderstood me. None is a type by itself in python. You wouldn't get None as a return value from the input() function anyway, as it is always a str type until converted. I was just using that as an example, because it is not uncommon to set a variable name to None as an initial value, as it is in the sample I provided above.
26th Feb 2022, 6:31 AM
ChaoticDawg
ChaoticDawg - avatar
0
By string i mean only letters
25th Feb 2022, 7:50 PM
Lenoname
0
ChaoticDawg do i put the try except under valid_input also?
25th Feb 2022, 8:56 PM
Lenoname
0
ChaoticDawg what do u mean by checks?
25th Feb 2022, 9:16 PM
Lenoname
0
What is this for a challenge?
25th Feb 2022, 9:51 PM
Ion Kare
Ion Kare - avatar
0
ChaoticDawg if numbers are None then why doesnt this result in ”wrong try again”?i typed in a number as input a = input("input: ") if a == None : print("wrong try again")
26th Feb 2022, 4:36 AM
Lenoname
0
ChaoticDawg or did i misunderstand what u said?
26th Feb 2022, 4:50 AM
Lenoname