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

来源:互联网 发布:个性扑克牌制作软件 编辑:程序博客网 时间:2024/06/05 17:04
# 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""""