#之函

python之函数用法endswith()

#-*-coding:utf-8-*-#python27#xiaodeng#python之函数用法endswith()#http://www.runoob.com/python/att-string-endswith.html#endswith()#说明:返回布尔值,判断字符串是否以指定后缀结尾.可选参数"start"...
代码星球 ·2020-07-14

python之函数用法xrange()

#-*-coding:utf-8-*-#python27#xiaodeng#python之函数用法xrange()#xrange()#说明:返回一个生成器#xrange做循环的性能比range好,尤其是返回很大的时候.除非要返回一个列表,则用range.'''classxrange(object)|xrange(sto...
代码星球 ·2020-07-14

python之函数用法globals()

#-*-coding:utf-8-*-#python27#xiaodeng#python之函数用法globals()#globals()#说明:在当前作用域下,查看全局变量'''globals(...)globals()->dictionaryReturnthedictionarycontainingthecur...
代码星球 ·2020-07-14

python之函数用法getattr()

#-*-coding:utf-8-*-#python27#xiaodeng#python之函数用法getattr()#getattr()#说明:'''getattr(...)getattr(object,name[,default])->valuedefault:默认值Getanamedattributefrom...
代码星球 ·2020-07-14

python之函数用法__getitem__()

#-*-coding:utf-8-*-#python27#xiaodeng#python之函数用法__getitem__()#http://www.cnblogs.com/hongfei/p/3858256.html#__getitem__#如果类把某个属性定义为序列,可以使用__getitem__()输出序列属性中的...
代码星球 ·2020-07-14

python之函数用法__setattr__

#-*-coding:utf-8-*-#python27#xiaodeng#python之函数用法__setattr__#http://www.cnblogs.com/hongfei/p/3858256.html#用__setattr__函数重构方法classFruit():def__init__(self,color...
代码星球 ·2020-07-14

python之函数用法round()

#-*-coding:utf-8-*-#python27#xiaodeng#python之函数用法round()#http://www.cnblogs.com/hongfei/p/3858256.html#round()#说明:返回有N个小数点浮点数,'''round(...)round(number[,ndigits...
代码星球 ·2020-07-14

python之函数用法setattr(),了解即可

#-*-coding:utf-8-*-#python27#xiaodeng#python之函数用法setattr(),了解即可#http://www.cnblogs.com/hongfei/p/3858256.html#setattr()#说明:给object对象添加新的name(属性)和value(属性值),通常在c...

python之函数用法id(),了解即可

#-*-coding:utf-8-*-#python27#xiaodeng#python之函数用法id(),了解即可#http://www.cnblogs.com/hongfei/p/3858256.html#id()#说明:查找对象的内存地址'''id(...)id(object)->integerReturn...

python之函数用法locals()

#-*-coding:utf-8-*-#python27#xiaodeng#python之函数用法locals()#locals()#说明:查找局部变量,返回一个名字/值对的字典对象。只具备查找权限'''locals(...)locals()->dictionaryUpdateandreturnadictiona...
代码星球 ·2020-07-14

python之函数用法vars()

#-*-coding:utf-8-*-#python27#xiaodeng#python之函数用法vars()#vars()#说明:返回对象object的属性和属性值的字典对象'''vars(...)vars([object])->dictionarydictionary:字典对象Withoutarguments...
代码星球 ·2020-07-14

python之函数用法execfile()

#-*-coding:utf-8-*-#python27#xiaodeng#python之函数用法execfile()#execfile()#说明:用来执行一个文件,相对于双击的效果'''execfile(...)execfile(filename[,globals[,locals]])filename:文件名glob...
代码星球 ·2020-07-14

python之函数用法isinstance()

#-*-coding:utf-8-*-#python27#xiaodeng#python之函数用法isinstance()#isinstance()#说明:返回一个布尔值,判断数据类型'''isinstance(...)isinstance(object,class-or-type-or-tuple)->bool...

python之函数用法any()

#-*-coding:utf-8-*-#python27#xiaodeng#python之函数用法any()#any()#说明:如果iterable的任何元素不为0、''、False,all(iterable)返回True。如果iterable为空,返回False'''any(...)any(iterable)->...
代码星球 ·2020-07-14

python之函数用法iter()

#-*-coding:utf-8-*-#python27#xiaodeng#python之函数用法iter()#iter()#说明:对一个对象调用iter()就可以得到它的迭代器'''iter(...)iter(collection)->iteratorcollection:容器iterator:可迭代对象ite...
代码星球 ·2020-07-14
首页上一页1234下一页尾页