0
Please why does my code say this?
2 ответов
+ 10
The message in print() is not a string.
What is the expected output?
+ 6
The message in print is not printable… change it to a string.
Your var “a section” is not defined. So it trows an error.
You can’t name variables with a name with spaces, use down bars instead.
Bad name: my super var = 9
Good name: my_super_var = 9