python_3_字符串

1.strip,lstrip,rstrippython

" hi, ming ".strip()   #去掉先後空格
"@hi,ming@".strip("@") #去掉@

2.大小寫互換git

# 1.lower()
# 2.upper()
# 3.swapcase() 大小寫互換

3.左右填充測試

"sos".ljust(20,"#")
# 'sos#################'
"sos".rjust(20,"#")
"sos".center(20,"#"

4.查找spa

# 「」.find(str)
# "".index()

5.分割,連接blog

# "".join(["1","2"])
# "".split(xx)

6.經常使用的字符串測試ip

"".startsWith()
"".endsWith()
"".isalpha()
"".isalnum()
"".isdigit()"".isspace()"".islower()"".isupper()
相關文章
相關標籤/搜索