本文介绍了字符串两种重要的使用方式:字符串格式化和字符串方法。一.字符串格式化
二.字符串方法
常用的字符串方法有:find,join,lower,replace,split,strip,translate。
具体的代码见下面
py文件# -*- coding: utf-8 -*- #字符串格式化 #1.简单转换print ‘%s plus %s equals %s‘%(1,2,3)from math import piprint ‘Pi:%f...‘%pi #2.字段宽度和精度print ‘%10f‘ % pi # 3.141593 字段宽10print ‘%10.2f‘ % pi # 3.14字段宽10,精度2print ‘%.5s‘ %‘abcdefgh‘ #abcdeprint ‘%.*s‘ %(5,‘abcdefgh‘) #*号 #3.符号、对齐和用0填充print ‘%010f‘ %pi #003.141593 在宽度精度前放一个标志,可以是0,加,减号或空格,用于填充print ‘%+10f‘ %pi # +3.141593 加号,用于标志符号print ‘%-10f‘ %pi #减号,左对齐print (‘%+10f‘ %pi)+‘\n‘+‘%+10f‘ %-pi # +3.141593 换行 -3.141593,左对齐 #字符串方法#1.find:查找子串,返回最左端索引,没有返回-1A=‘I am a student‘print A.find(‘am‘) #2print A.find(‘stu‘) #7print A.find(‘su‘) #-1 #2.join:split的逆方法,用来连接序列中的元素seq=[‘1‘,‘2‘,‘3‘,‘4‘,‘5‘]a=‘+‘print a.join(seq) #1+2+3+4+5 注意顺序,不是seq.join(a) #3.lower:返回字符串的小写字母版print ‘AJDOEDD‘.lower() #4.replace :返回某字符串的所以匹配项均被替换后的字符串print ‘A and Hong are friends‘.replace(‘A‘,‘Ming‘) #5.split join的逆方法,将字符串分割成序列print ‘1+2+3+4+5‘.split(‘+‘) #[‘1‘, ‘2‘, ‘3‘, ‘4‘, ‘5‘] #6.strip 返回去除两侧空格的字符串(可以去除无意加上的空格)print ‘ A is B ‘.strip() #A is B #7.translate 替换字符中的某些部分,只处理单个字符,可同时进行多个替换from string import maketranstable =maketrans(‘AB‘,‘CD‘) #maketrans函数接受两个参数:两个等长的字符串,效果如下print ‘this is A and B‘.translate(table) #this is C and D
时间: 2024-10-21 20:41:54