0
SyntaxError
what did i wrong? File "./Playground/file0.py", line 1 >>>20//6 ^ SyntaxError: invalid syntax
2 Antworten
+ 1
>>> is the prompt of the interactive interpreter... you do not have to copy it in SoloLearn playground...
and if you want to see the result, you have to use print():
print(20//6)
+ 1
thank you!