Need help | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Need help

Hi! Good Afternoon! Can anyone send me the test case 4 and test case 5 of the coad coach problem: "No numerals"?

15th Nov 2020, 9:50 AM
Suman Ghosh
Suman Ghosh - avatar
3 Answers
+ 3
Ok. Thank you for the help. Now my code works. After deleting the line lower() case conversation, the code is running.
15th Nov 2020, 10:37 AM
Suman Ghosh
Suman Ghosh - avatar
+ 1
#Print number in words for 0-10 in a phrase - No Numerals s=input() s=s.lower() x=s.split(' ') word={'0':'zero','1':'one','2':'two','3':'three','4':'four','5':'five','6':'six','7':'seven','8':'eight','9':'nine','10':'ten'} t='' for i in x: if i in word: t=t+word[i]+' ' else: t=t+i+' ' s=t del t,x,word print(s)
15th Nov 2020, 9:57 AM
Suman Ghosh
Suman Ghosh - avatar
+ 1
This is my code. I am not a pro member so the test case 4 and 5 is not showing. Thats why I posted. Except those cases others are passed.
15th Nov 2020, 9:58 AM
Suman Ghosh
Suman Ghosh - avatar