标签:
定义: 一有序的字符序列集合,常量。
# -*- 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 ‘‘‘
标签:
原文地址:http://www.cnblogs.com/Mokaffe/p/4421299.html