笨办法学Python ex09

打印, 打印, 打印


  • 输入:
# -- coding: utf-8 --

#Here's some new strange stuff, remember type it exactly.

days = "Mon Tue Wed Thu Fri Sat Sun"
months = "Jan\nFeb\nMar\nApr\nMAY\nJun\nJul\nAug" # \n是换行符

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.
"""
# 多行字符使用""" """

  • 运行:


你可能感兴趣的:(笨办法学Python ex09)