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

Python-字符串

时间:2015-04-13 09:22:23      阅读:157      评论:0      收藏:0      [点我收藏+]

标签:

定义: 一有序的字符序列集合,常量

  • 用单引号引起来
  • 用双引号引起来
  • 用三重(单双均可)引号引起来
技术分享
# -*- coding: cp936 -*-
# 字符串

# python 中常见的字符串表示方式是单引号 和双引号,效果一样
#内容带有单引号,就用双引号表示"It‘s good"
#反之亦然  ‘You are a "BAD" man‘

#用print 输出一下字符串

#-------- It‘s good  用双引号区别字符串中的单引号
print " It‘s good "

#-------- You are a "BAD" man  用单引号区分字符串中的双引号
print   You are a "BAD" man 


#--------python中还有一种表示字符串的方法:三个引号(‘‘‘)或者(""")
#-------  "What‘s your name?" I asked.
#--------  "I‘m Han Meimei."
print ‘‘‘
"What‘s your name?" I asked.
"I‘m Han Meimei."
‘‘‘

#-------还有一种在字符串中表示引号的方法,就是用\,可以不受引号的限制
#-------\‘表示单引号,\"表示双引号
#-------‘I\‘m a \"good\" teacher‘
print   I \‘m a \"good\"  teacher 


#-------\被称作转译字符,除了用来表示引号,还有比如用
#-------\\表示字符串中的\
#-------\n表示字符串中的换行

#-------\还有个用处,就是用来在代码中换行,而不影响输出的结果:
#-------"this is the\
#--------same line"
#--------这个字符串仍然只有一行,和
#--------"this is the same line" 是一样的,只是在代码中换了行

#--------1.He said, "I‘m yours!"
print ‘‘‘
He said, " I‘m yours!"
‘‘‘
#--------2.\\_v_//
print "\\\_v_//"

#-------3.Stay hungry,
#---------stay foolish.
#---------    --Steve Jobs
print "Stay hungry,\nstay foolish.\n     --Steve Jobs"

print ‘‘‘
stay hungry,
stay foolish.
     -- steven
‘‘‘
View Code

技术分享

 

Python-字符串

标签:

原文地址:http://www.cnblogs.com/Mokaffe/p/4421299.html

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