Skip to content

Latest commit

 

History

History
31 lines (25 loc) · 827 Bytes

chapter9.md

File metadata and controls

31 lines (25 loc) · 827 Bytes

#打印,打印,打印

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

##你应该看到的样子

$ python ex9.py 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.

##进阶练习

  1. 检查你写的代码,写下你的错误,然后争取在下一次的练习中不要重复犯错误

##学生提问