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???

4th Sep 2019, 8:35 AM
Asymptote
Asymptote - avatar
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.
4th Sep 2019, 8:43 AM
Rincewind
Rincewind - avatar
+ 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.
4th Sep 2019, 8:44 AM
Kuri
Kuri - avatar
+ 1
Rincewind, Kuri, Thank you👍😊
4th Sep 2019, 8:48 AM
Asymptote
Asymptote - avatar