Ex9 not getting expected results (found my error)

Realized I had used / instead of \ but maybe someone else will make the same mistake. So I’ll leave this here.
Here is my code. (line numbers added for ease)

1 # Here’s some new strange stuff, remember type it exactly.
2
3 days = “Mon Tue Wed Thu Fri Sat Sun”
4 months = “Jan/nFeb/nMar/nApr/nMay/nJun/nJul/nAug”
5
6 print(“Here are the days: “, days)
7 print(“Here are the months: “, months)
8
9 print(”””
10 There’s something going on here.
11 With the three double-quotes.
12 We’ll be able to type as much as we like.
13 Even 4 lines if we want, or 5, or 6.
14 “””)

Results of running the code. ( the unexpected result is in itallics)

Here are the days: Mon Tue Wed Thu Fri Sat Sun
Here are the months: Jan/nFeb/nMar/nApr/nMay/nJun/nJul/nAug

There’s something going on here.
With the three double-quotes.
We’ll be able to type as much as we like.
Even 4 lines if we want, or 5, or 6.

I’m currently using 3.6.3, I’m not sure if this is the cause, or if I’m missing something small in my attempts to reproduce the code from the book.

Thanks in advance for any assistance provided.

Yes, you have to do \n or else it doesn’t work. Let me know if you need more help.