赞
踩
:
def reverse_string(s):
return s[::-1]
将所有字母转换为小写:
def lower_case(s):
return s.lower()
将所有字母转换为大写:
def upper_case(s):
return s.upper()
将所有首字母大写:
def title_case(s):
return s.title()
计算字符串中有多少个特定的子串:
def count_substring(s, sub):
return s.count(sub)
检查字符串是否以特定的子串开头:
def starts_with_sub(s, sub):
return s.startswith(sub)
检查字符串是否以特定的子串结尾:
def ends_with_sub(s, sub):
return s.endswith(sub)
如果子串存在于字符串中,返回子串首次出现的位置;如果子串不存在,返回-1:
def find_substring(s, sub):
return s.find(sub)
用特定的字符填充字符串,使得字符串的长度达到指定的长度:
def pad_string(s, width, fillchar=' '):
return s.ljust(width, fillchar)
删除字符串前后的空格:
def strip_string(s):
return s.strip()
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。