单引,双引号都可以字符串三引号允许换行
not in:判断是否不在此字符串中
r\R:原样输出字符串,如一些特殊字符
%d格式化整数
%f浮点数
类型转换:str(100)
字符串函数:
mystr="Hello"
en(mystr) 字符串的长度
count(): mystr.find("|")找字符串,返回找到的字符串的下标
rfind(): 从右面开始找
title(): 将每一个单词的首字母大写
find() vs index():如果找不到,index()产生异常,find()则返回-1
replace(): mystr.replace("ll","LL"),但是原字符串不会被改变
split(): mystr.split(""):如果split()什么都不写,就是通过\t和空格进行拆分
starswith(): 以XX开头
ends with(): 以XX结尾
lower(): 小写
upper(): 大写
partition(): mystr.partition("xxx")以此字符串为节点拆分
splitlines(): 按照换行符进行拆分如果字符串中有\n
decode():解码
encode():编码
ljust(),rjust(),center():字符串输出时对齐,括号里写大小
strip(),lsteip(),rstrip()去除空格