0
Please why does my code say this?
2 Answers
+ 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