0
I can't get an output
In Python, Strings lesson, when I enter these in code ground, I don't get an output eventhough it's the example of lesson: >>> """Customer: Good morning. Owner: Good morning, Sir. Welcome to the National Cheese Emporium.""" Why???
3 Answers
+ 1
Hello! You need to write a print statement to output them.
EG: print("Customer: Good morning.")
See the Python Basic Concepts: Simple Input and Output lesson for more information.
+ 2
Anything within symbol - "" " is treated as a comment block. Symbol known as 'doc string' in python.
These statements are only for the information purpose only. They do not have any effect on the code.
+ 1
Rincewind, Kuri, Thank youđđ