标签:判断 spl str slow 字符串 部分 not ash lower
1、加减乘除
2、% —— 取余
3、// —— 取商
** —— 幂
4、判断某个东西是否在某个东西里面包含 in not in
5、数字、字符串、布尔值(true、false)
6、6个字符串的魔法
join
#每个字符串中插入字符 # test = ‘功夫不负有心人‘ # #t = ‘ ‘ # v = ‘ ‘.join(test) # print(v)
split
#分割字符串
#分割字符串,后面不跟参数全部分割
test = ‘asdfkjhsdfssf‘
v = test.split(‘s‘,1) print(v)
find
test = ‘alex‘ v = test.find(‘e‘) print(v)
strip
#去除空白 test = ‘ alex‘ v = test.strip() print(v)
upper
lower
#判断是否全为小写,upper为转换小写 test = ‘Alex‘ v1 = test.islower() v2 = test.upper() print(v1,v2)
标签:判断 spl str slow 字符串 部分 not ash lower
原文地址:https://www.cnblogs.com/BruceKim/p/12571746.html