Python for beginner 16.3 bonus bug | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Python for beginner 16.3 bonus bug

Did anyone notice 16.3 has a bug? It asks to enter "this is awesome" but the output test is expecting "hello". Also it doesn't want input("hello") because the output would show hello ***hello*** Am I the only one seeing this bug? Here is the code Text = input("this is awesome") Print ("*** " + text + " ***") But SoloLearn will return with an error saying expected out put is ***hello*** Also try Text = input("hello) Print ("*** " + text + " ***") The output will show Hello ***hello*** Which doesn't make sense. If this is truly a bug where can I report the bug?

19th Mar 2021, 3:46 AM
k2hawk 10
k2hawk 10 - avatar
2 Answers
+ 1
you don't have to put a string as input argument: text = input() print("*** "+text+" ***")
19th Mar 2021, 3:55 AM
visph
visph - avatar
0
I finally figured what's wrong. I didn't realize their test cases would actually put input values for me. I was wonder how the code would know if it doesn't prompt a window asking me to submit a number to test the code. Thanks!
26th Mar 2021, 3:00 AM
k2hawk 10
k2hawk 10 - avatar