How to make that the code below doesn`t accept less then two letters? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

How to make that the code below doesn`t accept less then two letters?

Anybody have an idea how to make working code below: def get_str_center(input_str): if len(input_str) < 4: return input_str elif len(input_str) <= 2: return ('Please enter more then one letter') return get_str_center(input_str[1:-1]) tests = [(input('Please enter text here: '))] for test in tests: print(f"{test} -> {get_str_center(test)}") Thanks everybody!

29th Feb 2020, 1:06 PM
Stanislav Voloshchuk
Stanislav Voloshchuk - avatar
7 Answers
+ 1
repost my code again (I deleted it because i thought you need to print special symbols): def get_str_center(input_str): if len(input_str) < 4: return input_str return get_str_center(input_str[1:-1]) def get_str_center_checked(input_str): if len(input_str) <= 2: return ('Please enter more then one letter') return get_str_center(input_str) tests = ['bottle', 'bottles', 'x'] for test in tests: print(get_str_center_checked(test))
29th Feb 2020, 3:24 PM
andriy kan
andriy kan - avatar
+ 2
This snippet might help tests = "abd#@=y" print(len([i for i in tests if not i.isalnum()])) # output 3
29th Feb 2020, 1:51 PM
David Ashton
David Ashton - avatar
+ 1
You could do it while taking the input: tests = [] while True: inp = input() if len(inp)>=2: tests.append(inp) elif not inp: break
29th Feb 2020, 1:10 PM
HonFu
HonFu - avatar
+ 1
no, for me, a symbol is any character, like a letter, special symbol, digit and so on. I didn't know what your code should print. So, I guessed, when fixed it.
29th Feb 2020, 1:46 PM
andriy kan
andriy kan - avatar
+ 1
Mirielle👽 Thanks I already edit the message to be more clear. andriy kan Thanks I have a same idea about symbols expression =) David Ashton Thanks but it seems my question wasn`t clear enough so your advice gives me number of symbols in text. While I need to keep the original output but in case if user will input only one letter return message 'Please enter more then one letter'. HonFu Thank you for reply but your code just make infinite input.
29th Feb 2020, 2:50 PM
Stanislav Voloshchuk
Stanislav Voloshchuk - avatar
+ 1
Mirielle👽 Here is an example: def get_str_center(input_str): if len(input_str) < 4: return input_str return get_str_center(input_str[1:-1]) tests = ['bottle', 'bottles', 'x'] for test in tests: print(f"{test} -> {get_str_center(test)}") So what i need is that if in test is "x" (only one letter) it will give an Error and ask user to input more then one letter. Thanks for attention.
29th Feb 2020, 3:06 PM
Stanislav Voloshchuk
Stanislav Voloshchuk - avatar
+ 1
andriy kan Thanks! Mirielle👽 Thank for your example as well!
29th Feb 2020, 4:57 PM
Stanislav Voloshchuk
Stanislav Voloshchuk - avatar