0
Why is there 3 quotes in front of customer
Quotes
2 odpowiedzi
+ 6
https://www.sololearn.com/learn/JUMP_LINK__&&__Python__&&__JUMP_LINK/2274/
Newlines
Python provides an easy way to avoid manually writing "\n" to escape newlines in a string. Create a string with three sets of quotes, and newlines that are created by pressing Enter are automatically escaped for you.
>>> """Customer: Good morning.
Owner: Good morning, Sir. Welcome to the National Cheese Emporium."""
'Customer: Good morning.\nOwner: Good morning, Sir. Welcome to the National Cheese Emporium.'
As you can see, the \n was automatically put in the output, where we pressed Enter.
+ 3
what 3 quotes??? can't see anything