Int i = 1 print(i.bit_length()) # 转化成二进制的最小位数. ''' 0000 0001 ''' Str class str(basestring): """ str(object='') -> string Return a nice string representation of the object. If the argument is a string, the return value is the same object.…
1.概述 列表是python的基本数据类型之一,是一个可变的数据类型,用[]方括号表示,每一项元素使用逗号隔开,可以装大量的数据 #先来看看list列表的源码写了什么,方法:按ctrl+鼠标左键点list class list(object): """ list() -> new empty list list(iterable) -> new list initialized from iterable's items """ de…