新手上路,望大家多加提醒!
原文练习:
#Here's some new strange stuff, remenber type it exactly.
days = "Min 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.
"""
这边出现了三引号,作用是将里面的东西原封不动的打印出来,超级棒!