6 Antworten
+ 4
Hi Szabi103
The error is in your print statement
Here:
print s This is wrong
It should be:
print (s)
Use ()
+ 2
Here is the code corrected:
https://code.sololearn.com/c6w2G0N3oAbC/?ref=app
+ 1
Hi
+ 1
I figured out the 3rd line but whats up with the 4th?
+ 1
Remember the print statement uses parenthesis
print ()
+ 1
Thank you ;)