python3实现字符串操作的实例代码
程序员文章站
2022-12-04 12:32:28
python3字符串操作
x = 'abc'
y = 'defgh'
print(x + y) #x+y
print(x * 3)...
python3字符串操作
x = 'abc' y = 'defgh' print(x + y) #x+y print(x * 3) #x*n print(x[2]) #x[i] print(y[0:-1]) #str[i:j]
#求长度 >>> len(x) 11 #将其他类型转换为字符串 >>> str(123) '123' #将数字转为对应的utf-8字符 >>> chr(97) 'a' #将字符转为对应的数字 >>> ord('a') 97 #将数字转为16进制 >>> hex(32) '0x20' #将数字转为8进制 >>> oct(32) '0o40'
>>> str = 'abdcsdsjfkasfdfja' #将所有字符转为小写 >>> str.lower() 'abdcsdsjfkasfdfja' #将所有字符转为大写 >>> str.upper() 'abdcsdsjfkasfdfja' #判断所有字符是否为小写 >>> str.islower() false #判断所有字符是否都为可打印的 >>> str.isprintable() true #判断所有字符都是数字 >>> str.isnumeric() false #判断是否以参数为结尾 >>> str.endswith('fja') true #判断是否以参数为开头 >>> str.startswith('asd') false #将字符串以sep为分隔符分开, 返回一个列表 >>> str.split(sep='a') ['', 'bdcsdsjfkasfdfj', ''] >>> str.split(sep='s') ['abdc', 'd', 'jfka', 'fdfja'] #返回参数串的个数 >>> str.count('sd') 1 #将第一个参数字符串替换为第二个参数字符串,替换前n个 >>> str.replace('s', 'c', str.count('s')) 'abdccdcjfkacfdfja'
#center就是居中的意思,字符串的长度为6个单位,tj 占了两个单位,其余的位子用$来占位 >>>str ='tj' >>>print ( str.center(6, '$')) >>>$$tj$$ #从原字符串左右俩侧 删掉字符串列出的字符 >>> str.strip('sdffa') 'bdcsdsjfkasfdfj' >>> str.strip('sdffafjdb') 'csdsjfkasfd' #长度不够左侧用0填充 >>> str.zfill(23) '000000abdcsdsjfkasfdfja' #join中参数的每一个元素用':'连起来 >>> ':'.join(['127.0.0.1', '9988']) '127.0.0.1:9988'
总结
以上所述是小编给大家介绍的python3实现字符串操作的实例代码 ,希望对大家有所帮助
上一篇: Python字符串内置函数功能与用法总结
下一篇: 南宋中兴四将之一的张俊最后是什么结局?