Title

内置方法简单版

进制:

bin(),oct(),hex()

字符串(str)

name=“aaaaa” “” strip split replace indigit,lower,upper,center,count,find,index,join,format,startswith,endswith

列表 (list)

name =[1,2,”a”] [] 添加append,expend,insert,删除del,remove,pop,reverse,sort

字典 (dict)

name ={“name1”:”lyx”,”age”:22} {} 删除,pop popitem,get,update,formkeys(拼接value),setdefault(不存在增加k,返回v,如果存在k,不做任何修改)

元组(tuple)

name =(“a”,”b”,”c”) ()

集合(set)

name = {1,2,3,4,5} {} 不可变,无序,不重复,并集(|),交集(&),差集(-),对称差集(^)

posted @ 2023-03-09 19:59  哈哈哈哼  阅读(14)  评论(0编辑  收藏  举报