Skip to content

Instantly share code, notes, and snippets.

@santosadrian
Created February 2, 2020 08:57
Show Gist options
  • Save santosadrian/6759cea27b64d891a5e0ad93767f77b1 to your computer and use it in GitHub Desktop.
Save santosadrian/6759cea27b64d891a5e0ad93767f77b1 to your computer and use it in GitHub Desktop.
Example 9
# Here's some new strange stuff, remember type it exactly.
days = "Mon Tue Wed Fri Sat Sun"
months = "\n 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.
""")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment