您的位置:首页 > 编程语言 > Python开发

《笨办法学python》加分习题9——我的答案

2017-08-10 23:29 316 查看
新手上路,望大家多加提醒!

原文练习:

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

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


这边出现了三引号,作用是将里面的东西原封不动的打印出来,超级棒!
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: