0
Howtoget solution in python
8. Write codes that suit the conditions below. (20 pts) 1) Ask a word; Enter Word: 2) If the length of input word is less than 5, print âToo short.â 3) Unless, print the word then ask a new word; Enter Word: 4) If a user enter âquitâ, the loop statement will be excuted. 5) Use while, continue, break, and if clauses.
1 Answer
+ 3
x=input()
while True:
if(len(x)<5):
print('Too short')
x=input('New word:enter= ')
if(x=='quit'):
break
else:
print('right word')
break