name = "Bob"
age = 17
print(f"my name is {name}, I am {age+1}..")
'返回首字母大写'
print("spam".capitalize())
# Spam
'方法返回一个字符串,其中所有字符均为小写'
print("sPaM".casefold())
# spam
'统计字符串里某个字符或子字符串出现的次数'
print("bee".count("e"))
# 2
print("bee".count("ee"))
# 1
s = "编码测试"
ens = s.encode("utf-8")
print(ens)
# b'\xe7\xbc\x96\xe7\xa0\x81\xe6\xb5\x8b\xe8\xaf\x95'
des = ens.decode("utf-8")
print(des)
# 编码测试
'方法用于判断字符串是否以指定后缀结尾,如果以指定后缀结尾返回True,否则返回False。'
print("spam".endswith("am"))
# True
print("spam".startswith("s"))
# True
"find()方法检测字符串中子字符串的索引值,没找到返回-1"
print("spam".find("p"))
# 1
'index() 方法检测字符串中是否包含子字符串 str,如果找不到报错'
s = "This is a handbag!"
print(s.index("a"))
# 8
print(s.rindex("a"))
# 15
try:
print("spam".index("w"))
except Exception:
print("没找到")
# 没找到
'如果 string 至少有一个字符并且所有字符都是 字母或数字 则返回 True,否则返回 False'
print("spam123".isalnum())
# True
print("spam12-3a".isalnum())
# False
'isalpha() 方法检测字符串是否只由字母组成。'
print("spam".isalpha())
# True
print("spam123".isalpha())
# False
'如果字符串为空或字符串中的所有字符都是 ASCII,则返回 True,否则返回 False。'
print("abcdefg".isascii())
# True
print("派挨森".isascii())
# False
'检查字符串是否为有效标识符,也就是合法变量'
print("name".isidentifier())
# True
print("2name".isidentifier())
# False
'是否都是小写'
print("name".islower())
# True
print("Name".islower())
# False
'是否都是小写'
print(" ".isspace())
# True
print("s p a m".isspace())
# False
'方法检测字符串中所有的单词拼写首字母是否为大写,且其他字母为小写。'
print("Spam".istitle())
# True
print("spam".istitle())
# False
'检测字符串中所有的字母是否都为大写'
print("SPAM".isupper())
# True
print("Spam".isupper())
# False
'返回通过指定字符连接序列中元素后生成的新字符串'
l1 = ["name", "age", "high"]
seq = " - "
print(seq.join(l1))
# name - age - high
'返回一个原字符串左对齐,并使用空格填充至指定长度的新字符串。如果指定的长度小于原字符串的长度则返回原字符串。'
str = "This is a handbag!!!"
print(str.ljust(50,"*"))
# This is a handbag!!!******************************
print(str.rjust(50, "*"))
# ******************************This is a handbag!!!
'返回一个原字符串Right对齐,并使用空格填充至指定长度的新字符串。如果指定的长度小于原字符串的长度则返回原字符串。'
str = "This is a handbag!!!"
print(str.rjust(50 ,"*"))
# ******************************This is a handbag!!!
'Python strip() 方法用于移除字符串头尾指定的字符(默认为空格或换行符)或字符序列'
print("666spam666".strip("6"))
# spam
print(" spam ".strip())
# spam
" lstrip() 方法用于截掉字符串左边的指定字符,默认是空格"
print("666spam666".lstrip("6"))
# spam666
print(" spam".lstrip())
# spam
" tstrip() 方法用于截掉字符串右边的指定字符,默认是空格"
print("666spam666".rstrip("6"))
# 666spam
trantab = str.maketrans("abcde", "12345")
str1 = "This is a handbag!"
print(str1.translate(trantab))
# This is 1 h1n421g!
- partition
- rpartition
- split
- rsplit
s = "www.python.org"
print(s.partition("."))
# ('www', '.', 'python.org')
print(s.rpartition("."))
# ('www.python', '.', 'org')
print(s.split("."))
# ['www', 'python', 'org']
print(s.split(".", 1))
# ['www', 'python.org']
print(s.rsplit("."))
# ['www', 'python', 'org']
print(s.rsplit(".", 1))
# ['www.python', 'org']
print("This is a handbag!".replace("handbag", "handgun"))
# This is a handgun!
"Python find() 方法检测字符串中是否包含子字符串 str ,如果指定 beg(开始) 和 end(结束) 范围,则检查是否包含在指定范围内,如果包含子字符串返回开始的索引值,否则返回-1。"
print("This is a handbag!".rfind("a"))
# 15
print("This is a handbag!".find("a"))
# 8
print("This is a handbag!".find("aaa"))
-1
"按照行('\r', '\r\n', \n')分隔"
str = "This is\r a \r\n hand\nbag!!!"
print(str.splitlines())
# ['This is', ' a ', ' hand', 'bag!!!']
'swapcase() 方法用于对字符串的大小写字母进行转换。'
print("aaaBBBccc".swapcase())
# AAAbbbCCC
'方法返回"标题化"的字符串,'
print("spam".title())
# Spam
'将字符串变成大写'
print("Spam".upper())
# SPAM
'方法返回指定长度的字符串,原字符串右对齐,前面填充0。'
print("spam".zfill(10))
# 000000spam