您的位置:首页 > 编程语言 > Python开发

笨方法学习Python-习题9:打印,打印,打印

2017-10-19 13:24 726 查看
# 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"

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.
""")

"""
怎样将月份显示在新的一行?
字符串以 \n 开始就可以了,像这样:"\nJan\nFeb\nMar\nApr\nMay\nJun\nJul\nAug"
"""
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: