You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
383 B
14 lines
383 B
# Here's some new strange stuff, remember to type it exactly.
|
|
|
|
days = "Mon Tue Wed Thu Fri Sat Sun"
|
|
months = "Jan\nFeb\nMar\nApr\nMay\nJun\nJul\nAug"
|
|
|
|
print("Here are the days: ", days)
|
|
print("Here are the months: ", months)
|
|
|
|
print("""
|
|
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.
|
|
""")
|
|
|