《Learn python3 the hard way》ex9

Printing,Printing,Printing

今天学习的主要是如何打换行的文字
法一:换行符\n
法二 """""" 一对三引号,三个引号中间无空格

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

days = "Mom 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.
""")

猜你喜欢

转载自blog.csdn.net/qq_43181584/article/details/83265289