码迷,mamicode.com
首页 > 编程语言 > 详细

Learn Python The Hard Way(9)

时间:2015-04-14 20:26:25      阅读:310      评论:0      收藏:0      [点我收藏+]

标签:

#!/usr/bin/env python
# -*- coding: utf-8 -*-

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

输出结果:

                 技术分享

代码中‘\n’换行符,"""是输出多行字符串

Learn Python The Hard Way(9)

标签:

原文地址:http://my.oschina.net/xtfjt1988/blog/401518

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!