欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

笨办法学python 习题9:打印,打印,打印

程序员文章站 2022-06-15 18:43:44
...

继续继续熟悉打印

 

\n

打印换行1

"""

xxx

"""

打印换行2

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

days = "Mon Tue Wed Thu Fri Sat Sun"
months = "Jan\nFeb\nMar\nApr\nMay\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.
""")

打印结果

笨办法学python 习题9:打印,打印,打印

相关标签: python 学习