LearnPython3theHardWay__Excercise 9 Printing,Printing,Printing

知识点:巩固print里变量的输入和三引号的用法,\n的含义是换行
笨方法继续从练习中学习,开始print!

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

三引号后面可以输入多行内容,可以是三个单个号或三个双引号,但必须成对出现


What you should see
Here are the days: Mon Tue Wed Thu Fri Sat Sun
Here are the months: Jan
Feb
Mar
Apr
May
Jun
Jul
Aug

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.

Study Drill

跟上节课一样,检查纠错

猜你喜欢

转载自blog.csdn.net/byakki/article/details/86484741
今日推荐