1.python 中分割字符串的常用方法
2.字符串的大小写和空格操作
3.重建字符串以及对齐的方法
split() 用字符中的分割or 空 分割
partition()分割
分割
大小写
空格
join 合并
重建字符串的方法
zfill 填充0
给字符串填充0
对齐的方法
字符串的判断类方法
dir(“”)——————————查询
is 判断字符
startswith 开头判断
字符串的查询方法
find() index()
字符串的编解码方法
decode()解码
encode()编码
4/12
格式化
vister_name="xwl"
test="hello %s ,welcome! You are the %dth visitor."
test %(vister_name,vist_numbe)
test %(vister_name,vist_number)
'hello xwl ,welcome! You are the 200th visitor.'
%s 字符串
%d 十进制数
%10s
启用键
user_info={"name":"xxw","leve":99,"age":18}
"user %(name)s logged in,current user name is %(name)s ,leve is %(leve)s. "%user_info
限定浮点型 小数部分保留的位数
pi=3.1415926
"%.2f"%pi