# Homework 12, problem 3 -- solution. print("Code is poetry,\nbugs are typos,\nfix them and ship.") # One print call still produced three lines because the string itself # contained two `\n` characters, each of which Python turns into a real # newline when it writes the string to the terminal.