12 lines
322 B
Python
12 lines
322 B
Python
days = "Mon Tue Wed Thu Fri Sat Sun"
|
|
months = "Jan\nFeb\nMar\nApr\nMay\nJun\nJuly\nAug"
|
|
|
|
print("Here are the days: ", days)
|
|
print("Here are the months: ", months)
|
|
|
|
print( """
|
|
There's something going on here.
|
|
With the three double-quites.
|
|
We'ss be able to typse as much as we like.
|
|
Even 4 lines if we want. or 5. or 6.
|
|
""") |