The following are links to additional questions that our community has asked about this exercise:
This list will contain other frequently asked questions that aren’t quite as popular as the ones above.
Currently there have not been enough questions asked and answered about this exercise to populate this FAQ section.
This FAQ is built and maintained by you, the Codecademy community – help yourself and other learners like you by contributing!
Not seeing your question? It may still have been asked before – try () in the top-right of this page. Still can’t find it? Ask it below by hitting the reply button below this post ().
The directions said “each on their own line” but it didn’t seem like I had to do anything specific to make that happen. It just did it on its own. Is that true?
It’s hard to know without seeing your code/this exercise but print has a default argument of end="\n" and therefore each new print statement appears on a new line. Try that with a different end statement and see if the results cover your query-
print("line1", end='') # edited the default statement to an empty string
print("Is this line2?", end='')
Apologies if this doesn’t solve your problem, have a look at the following for any further questions-