【python字符串常用函数】

Python 的字符串是不可变的序列,常常需要进行操作。下面是 Python 中字符串常用的一些函数及其用法。

  1. capitalize():将字符串的第一个字符转换为大写字母。

    s = "hello, world!" 
    s = s.capitalize() 
    print(s)   # "Hello, world!"
  2. count(sub[, start[, end]]):返回字符串中子字符串 sub 在指定范围内的出现次数。可选参数 startend 分别为开始和结束索引。

    s = "hello, world!" 
    count = s.count("l") 
    print(count) # 3
  3. find(sub[, start[, end]]):返回字符串中子字符串 sub 在指定范围内第一次出现的索引值。如果没有找到,返回 -1。可选参数 startend 分别为开始和结束索引。

    s = "hello, world!" 
    index = s.find("world") 
    print(index)  # 7
  4. join(iterable):将可迭代对象中的字符串连接起来,返回一个新的字符串。

    s = "-" seq = ("a", "b", "c") 
    new_string = s.join(seq) 
    print(new_string)    # "a-b-c"
  5. replace(old, new[, count]):将字符串中的所有旧子串 old 替换为新子串 new。可选参数 count 指定替换次数。

    s = "hello, world!" 
    new_string = s.replace("world", "Python") 
    print(new_string)      # "hello, Python!"
  6. split([sep[, maxsplit]]):将字符串按照指定的分隔符 sep 分割成列表。可选参数 maxsplit 指定分割次数。

    s = "hello,world,Python" 
    split_string = s.split(",") 
    print(split_string)   # ['hello', 'world', 'Python']
  7. strip([chars]):返回去除了开头和结尾指定字符 chars 的字符串。

    s = " hello, world! " 
    stripped_string = s.strip() 
    print(stripped_string)     # "hello, world!"

这些是 Python 中字符串的一些常用函数及其用法。掌握这些函数可以更方便地操作字符串,提高编程效率。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值