Created
February 27, 2014 20:29
-
-
Save blammothyst/9258879 to your computer and use it in GitHub Desktop.
Code from Learn Python the Hard Way(.org) ex 9
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Here's some new strange stuff, remember type it exactly. | |
days= "Mon Tue Wed Thu Fri Sat Sun" | |
months= "\nJan\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