当前位置: 代码迷 >> 综合 >> 2020-9-20 Python 学习心得(字符串)
  详细解决方案

2020-9-20 Python 学习心得(字符串)

热度:6   发布时间:2024-02-21 03:23:44.0

capitalize() 首字母大写。

swapcase() 大小写互换。

endwith(‘结尾’) 检查字符串是否以结尾字符串结尾 。

startwith(‘开始’) 检查字符串是否以开始字符串开始。

find(’ ') 检查并返回索引。

rfind(’ ') 右查并返回索引。

str.isnumeric() 检查字符串是否包含数字字符。

str.ljust(width,’ ‘);str.rjust(width,’ ') 左对齐或者右对齐。

lstrip([ chars]):删除字符串左侧的字符或者指定的字符。rstrip([ chars]):删除字符串末尾的字符或者指定的字符。

partition(sub) 找到字符串sub并将字符串分成3个元组。若不包含,则后两个元组为空。

replace(‘Old’ , ‘New’, num):将字符串换成新的替换次数为num。

str.strip().split(‘str’):默认以空格切片,或者以str切片,之后就不要str了。

切片是第一个后面是1时,取右边,是0时取左边。

string = "hello boy<[www.baidu.com]>byebye"
print(string.split('[')[1].split(']')[0]) # www.baidu.com
print(string.split('[')[1].split(']')[0].split('.')) # ['www', 'baidu', 'com']

splitlines([keepends])

str = '1 \n 2 \n 3 \n 4'
print(str.splitlines(True))
print(str.splitlines(False))['1 \n', ' 2 \n', ' 3 \n', ' 4']
['1 ', ' 2 ', ' 3 ', ' 4']

format

str = "{a} Love {b}".format(a = 'I',b = 'Math')
print(str)I Love Math

练习二:检查是否字符串为纯数字

str = "123 456 567 789 235 '小白兔'"
a = str.isdigit()
print(a)False