还是数据类型

数据类型 -int bit_length 查看数据占多少位 a=8 w=int.bit_length print(w) -bool -True/False -str -upper() :全部变变成大写 -lower() :全部变成小写 -strip() :去除空格 -split ():以什么什么为分割 -replace() :就是把 什么 替换成什么 -join :以什么作为分割 name='alex' x="_".join(name) print(x) -capitalize:首写字符大写 -startswith:判断是不是以什么为开头,是就 True,反之就是False - endswith:判断是不是以什么结尾。 -isdecimal :判断是不是数字, 是就是True,反之就是False -list -append :增加 在末尾 -insert :指定位置增加 - reverse:反转的意思 name=['asc','cda'] name.reverse() print(name) -tuple 元组 -dict -get :提取子弹中的值 -items: 此方法返回一个元组对列表 -keys -values for range 编码 ascii unicode utf-8 gbk 补充 find 查找字符串 是否有对应的值 有就
posted @ 2017-08-23 18:47  程绩  阅读(124)  评论(0编辑  收藏  举报