E-COM-NET
首页
在线工具
Layui镜像站
SUI文档
联系我们
推荐频道
Java
PHP
C++
C
C#
Python
Ruby
go语言
Scala
Servlet
Vue
MySQL
NoSQL
Redis
CSS
Oracle
SQL Server
DB2
HBase
Http
HTML5
Spring
Ajax
Jquery
JavaScript
Json
XML
NodeJs
mybatis
Hibernate
算法
设计模式
shell
数据结构
大数据
JS
消息中间件
正则表达式
Tomcat
SQL
Nginx
Shiro
Maven
Linux
python内置函数'
python奇技淫巧(转载)
转载自:http://bigwayseo.com/2031本文用作记录,在使用python过程中遇到的一些奇技淫巧,有些代码是本人所写,有些则是
python内置函数
,有些则取之互联网。
acyu61887
·
2017-07-12 14:00
python
python学习系列--
python内置函数
(一)
先列出所有的
python内置函数
,可以看到还是挺多的。abs()求给定数的绝对值。all()传入一个列表,只有当列表中所有元素都是真时,该函数返回真。
拾瓦兴阁
·
2017-07-09 14:16
python
内置函数
Python基于用户协同过滤算法的电影推荐代码demo
本文主要演示
Python内置函数
以及内置字典与集合的用法。from
dongfuguo
·
2017-06-05 09:30
Python可以这样学
董付国
Python小屋
如何在终端查看
python内置函数
功能
(三)如何查看python的文档pydocLinux:pydoc**window:python-mpydoc**注意:(1)在里linux下,可以在终端用pydocraw_input查看内置函数raw_input的作用。(2)但在window下,要有python-mpydocraw_input查看另外,如何查看第三方模组的函数呢?法二在linux和window下均可。可以两种方法:法1、直接在sh
Babyzpj
·
2017-05-02 14:49
Python内置函数
Python:内置函数Python所有的内置函数Built-inFunctionsabs()divmod()input()open()staticmethod()all()enumerate()int()ord()str()any()eval()isinstance()pow()sum()basestring()execfile()issubclass()print()super()bin()fi
奚落123
·
2017-05-01 12:39
Python
函数
python
Python内置函数
简记
一、数学运算类abs(x)求绝对值1、参数可以是整型,也可以是复数2、若参数是复数,则返回复数的模complex([real[,imag]])创建一个复数divmod(a,b)分别取商和余数注意:整型、浮点型都可以float([x])将一个字符串或数转换为浮点数。如果无参数将返回0.0int([x[,base]])将一个字符转换为int类型,base表示进制long([x[,base]])将一个字
奚落123
·
2017-05-01 12:22
函数
Python
python
Python3的函数
内置函数Python有很多内置的函数,具体可查看官方文档:
Python内置函数
官方文档链接也可以在命令行,使用help(函数名)来查看使用方法:>>>help(max)Helponbuilt-infunctionmaxinmodulebuiltins
arthur_deng
·
2017-04-05 10:52
Python
Python内置函数
sorted()从入门到精通
Python内置函数
sorted()可以对列表、元组、字典、集合、字符串、range对象以及其他可迭代对象进行排序,返回排序后的列表,支持使用key参数指定排序规则,支持reverse参数指定升序或者降序
dongfuguo
·
2017-03-18 17:44
Python程序设计
Python
Python可以这样学
python内置函数
5-getattr()
Helponbuilt-infunctiongetattrinmodule__builtin__:getattr(...)getattr(object,name[,default])->valueGetanamedattributefromanobject;getattr(x,'y')isequivalenttox.y.Whenadefaultargumentisgiven,itisreturne
大云技术
·
2017-02-22 11:39
python
function
Python
python内置函数
5-frozenset()
Helponclassfrozensetinmodule__builtin__:classfrozenset(object)|frozenset()->emptyfrozensetobject|frozenset(iterable)->frozensetobject||Buildanimmutableunorderedcollectionofuniqueelements.||Methodsdefi
大云技术
·
2017-02-22 11:02
collection
python
elements
Python
python内置函数
5-format()
Helponbuilt-infunctionformatinmodule__builtin__:format(...)format(value[,format_spec])->stringReturnsvalue.__format__(format_spec)format_specdefaultsto""format(value[,format_spec])Convertavaluetoa“for
大云技术
·
2017-02-22 11:58
standard
function
however
Python
python内置函数
5-float()
Helponclassfloatinmodule__builtin__:classfloat(object)|float(x)->floatingpointnumber||Convertastringornumbertoafloatingpointnumber,ifpossible.||Methodsdefinedhere:||__abs__(...)|x.__abs__()abs(x)||__a
大云技术
·
2017-02-22 11:10
python
number
possible
Python
python内置函数
5-filter()
Helponbuilt-infunctionfilterinmodule__builtin__:filter(...)filter(functionorNone,sequence)->list,tuple,orstringReturnthoseitemsofsequenceforwhichfunction(item)istrue.IffunctionisNone,returntheitemstha
大云技术
·
2017-02-22 10:45
sequence
function
elements
Python
python内置函数
4-file()
Helponclassfileinmodule__builtin__:classfile(object)|file(name[,mode[,buffering]])->fileobject||Openafile.Themodecanbe'r','w'or'a'forreading(default),|writingorappending.Thefilewillbecreatedifitdoesn'
大云技术
·
2017-02-21 13:42
default
reading
Python
python内置函数
4-execfile()
Helponbuilt-infunctionexecfileinmodule__builtin__:execfile(...)execfile(filename[,globals[,locals]])ReadandexecuteaPythonscriptfromafile.Theglobalsandlocalsaredictionaries,defaultingtothecurrentglobal
大云技术
·
2017-02-21 13:52
different
instead
function
Python
python内置函数
4-eval()
Helponbuilt-infunctionevalinmodule__builtin__:eval(...)eval(source[,globals[,locals]])->valueEvaluatethesourceinthecontextofglobalsandlocals.ThesourcemaybeastringrepresentingaPythonexpressionoracodeob
大云技术
·
2017-02-21 13:01
python
eval
Python
python内置函数
4-enumerate()
Helponclassenumerateinmodule__builtin__:classenumerate(object)|enumerate(iterable[,start])->iteratorforindex,valueofiterable||Returnanenumerateobject.iterablemustbeanotherobjectthatsupports|iteration.
大云技术
·
2017-02-21 11:35
python
enumerate
Python
python内置函数
4-divmod()
Helponbuilt-infunctiondivmodinmodule__builtin__:divmod(...)divmod(x,y)->(quotient,remainder)Returnthetuple((x-x%y)/y,x%y).Invariant:div*y+mod==x.divmod(a,b)Taketwo(noncomplex)numbersasargumentsandretu
大云技术
·
2017-02-21 10:06
function
complex
quotient
Python
python内置函数
3-dir()
Helponbuilt-infunctiondirinmodule__builtin__:dir(...)dir([object])->listofstringsIfcalledwithoutanargument,returnthenamesinthecurrentscope.Else,returnanalphabetizedlistofnamescomprising(someof)theattr
大云技术
·
2017-02-20 17:03
default
function
otherwise
Python
python内置函数
3-delattr()
Helponbuilt-infunctiondelattrinmodule__builtin__:delattr(...)delattr(object,name)Deleteanamedattributeonanobject;delattr(x,'y')isequivalentto``delx.y''.delattr(object,name)Thisisarelativeofsetattr().T
大云技术
·
2017-02-20 17:14
function
provided
equivalent
Python
python内置函数
3-complex()
Helponclasscomplexinmodule__builtin__:classcomplex(object)|complex(real[,imag])->complexnumber||Createacomplexnumberfromarealpartandanoptionalimaginarypart.|Thisisequivalentto(real+imag*1j)whereimagde
大云技术
·
2017-02-20 16:45
complex
defaults
equivalent
Python
python内置函数
3-compile()
Helponbuilt-infunctioncompileinmodule__builtin__:compile(...)compile(source,filename,mode[,flags[,dont_inherit]])->codeobjectCompilethesourcestring(aPythonmodule,statementorexpression)intoacodeobjectt
大云技术
·
2017-02-20 16:54
python
compile
Python
python内置函数
3-cmp()
Helponbuilt-infunctioncmpinmodule__builtin__:cmp(...)cmp(x,y)->integerReturnnegativeifxy.cmp(x,y)Comparethetwoobjectsxandyandreturnanintegeraccordingtotheoutcome.Thereturnvalueisnegativeifxy.中文说明:比较两个
大云技术
·
2017-02-20 16:29
objects
function
positive
Python
python内置函数
2-classmethod()
Helponclassclassmethodinmodule__builtin__:classclassmethod(object)|classmethod(function)->method||Convertafunctiontobeaclassmethod.||Aclassmethodreceivestheclassasimplicitfirstargument,|justlikeaninst
大云技术
·
2017-02-16 13:37
function
either
receives
Python
python内置函数
2-chr()
Helponbuilt-infunctionchrinmodule__builtin__:chr(...)chr(i)->characterReturnastringofonecharacterwithordinali;0>>chr(46)'.'>>>chr(57)'9'>>>chr(89)'Y'
大云技术
·
2017-02-16 13:37
character
python
function
Python
python内置函数
2-callable()
Helponbuilt-infunctioncallableinmodule__builtin__:callable(...)callable(object)->boolReturnwhethertheobjectiscallable(i.e.,somekindoffunction).Notethatclassesarecallable,asareinstanceswitha__call__()m
大云技术
·
2017-02-16 13:42
function
possible
appears
Python
python内置函数
2-bytearray()
Helponclassbytearrayinmodule__builtin__:classbytearray(object)|bytearray(iterable_of_ints)->bytearray.|bytearray(string,encoding[,errors])->bytearray.|bytearray(bytes_or_bytearray)->mutablecopyofbytes
大云技术
·
2017-02-16 13:39
python
specified
Python
python内置函数
2-bool()
Helponclassboolinmodule__builtin__:classbool(int)|bool(x)->bool||ReturnsTruewhentheargumentxistrue,Falseotherwise.|ThebuiltinsTrueandFalsearetheonlytwoinstancesoftheclassbool.|Theclassboolisasubclasso
大云技术
·
2017-02-15 15:26
python
bool
内置函数
Python
python内置函数
1-bin()
Helponbuilt-infunctionbininmodule__builtin__:bin(...)bin(number)->stringReturnthebinaryrepresentationofanintegerorlonginteger.bin(x)Convertanintegernumbertoabinarystring.TheresultisavalidPythonexpress
大云技术
·
2017-02-14 11:47
内置函数
python
bin
Python
python内置函数
1-basestring()
Helponclassbasestringinmodule__builtin__:classbasestring(object)|Typebasestringcannotbeinstantiated;itisthebaseforstrandunicode.||Dataandotherattributesdefinedhere:||__new__=|T.__new__(S,...)->anewobj
大云技术
·
2017-02-14 11:48
abstract
python
cannot
Python
python内置函数
1-any()
Helponbuilt-infunctionanyinmodule__builtin__:any(...)any(iterable)->boolReturnTrueifbool(x)isTrueforanyxintheiterable.any(iterable)ReturnTrueifanyelementoftheiterableistrue.Iftheiterableisempty,return
大云技术
·
2017-02-14 11:00
python
return
function
Python
python内置函数
1-all()
Helponbuilt-infunctionallinmodule__builtin__:all(...)all(iterable)->boolReturnTrueifbool(x)isTrueforallvaluesxintheiterable.all(iterable)ReturnTrueifallelementsoftheiterablearetrue(oriftheiterableisem
大云技术
·
2017-02-14 10:09
python
return
function
Python
python内置函数
1-abs()
Helponbuilt-infunctionabsinmodule__builtin__:abs(...)abs(number)->numberReturntheabsolutevalueoftheargument.abs(x)Returntheabsolutevalueofanumber.Theargumentmaybeaplainorlongintegerorafloatingpointnum
大云技术
·
2017-02-14 10:59
python
number
function
Python
Python内置函数
Python内置的字符串处理函数整理,有字母处理、格式化相关、字符串搜索相关、字符串替换相关等等str='pythonStringfunction'生成字符串变量str='pythonStringfunction'字符串长度获取:len(str)例:print'%slength=%d'%(str,len(str))字母处理全部大写:str.upper()全部小写:str.lower()大小写互换:
chengxuyonghu
·
2017-02-13 18:58
Python内置函数
用
Python内置函数
轻松实现各种进制数之间的转换
0.说明9个月没有写过Python了,这9个月都在华为的ICT知识海洋里遨游,前段时间刚刚通过了HCIE的认证,想着还是喜欢Python和Linux多些,所以又回来了,后面会有越来越多的Python干货分享给大家,比如后面会打算写一个完整的Linux主机监控项目的教程给初入门的朋友,相信这会是非常不错的体验。那段时间,曾经有些时候,我需要对各种进制进行转换,因为虽然那会不写Python了,但是还是
xpleaf
·
2017-01-08 21:26
int
Python
bin
Python高级&技巧
Python内置函数
(7)——bytearray
英文文档:classbytearray([source[,encoding[,errors]]])Returnanewarrayofbytes.Thebytearrayclassisamutablesequenceofintegersintherange0>>b=bytearray()>>>bbytearray(b'')>>>len(b)03.当source参数为字符串时,encoding参数也必
十月狐狸
·
2016-12-29 13:00
Python内置函数
(4)——ascii
英文文档:ascii(object)Asrepr(),returnastringcontainingaprintablerepresentationofanobject,butescapethenon-ASCIIcharactersinthestringreturnedbyrepr()using\x,\uor\Uescapes.Thisgeneratesastringsimilartothatre
十月狐狸
·
2016-12-29 11:20
python内置函数
2
divmod求两个数相除的结果和余数n1,n2=divmod(97,10)>(9,7)n1=97/10=9,n2=97%10=7isinstance(s,str)判断对象是否是某个类的实例s="abc"abc是一个string类型的对象,对象也称作为一个类的实例li=[11,22,33,44]ret=filter(lambdaa:a>22,li)print(list(ret),ret)lambda
langy1990
·
2016-12-15 10:37
内置
python
Python内置函数
之filter
一:filterHelp on built-in function filter in module __builtin__: filter(...) filter(function or None, sequence) -> list, tuple, or string Return those items of sequence for which function(ite
dreamhorse
·
2016-11-27 13:12
sequence
filter
function
运维
Python
python内置函数
1
1.r=compile(s,"","exec")compile()将字符串编译成python代码2.exec(r)执行python代码3.eval("8*6")eval("")里面只能执行表达式,执行eval()会有返回值,exec执行完无返回值.4.filter和mapfilter(函数,可迭代对象),返回一个符合条件的元素集合.对可迭代对象进行筛选.map(函数,可迭代对象)相当于for循环,
langy1990
·
2016-11-17 14:49
函数
内置
python
Python编程入门-第9章 异常处理 -学习笔记
(一)引发异常
Python内置函数
和库函数通常在出现意外情况时引发异常。如:除以零将抛出异常>>>1/0Traceback(mostrecentcalllast):File"",line1,in1/
wutong1024
·
2016-11-12 14:11
学习笔记
python
python
Python内置函数
OCT详解
英文文档:复制代码代码如下:oct(x)Convertanintegernumbertoanoctalstring.TheresultisavalidPythonexpression.IfxisnotaPythonobject,ithastodefineanmethodthatreturnsaninteger.说明:1.函数功能将一个整数转换成8进制字符串。如果传入浮点数或者字符串均会报错。>>>
sesshoumaru
·
2016-11-09 08:23
老程序员的python快速学习之旅
语法及标准库等基础知识的快速掌握1.老程序员通过一篇文章快速学会python这门新语言2.老程序员快速预览Python标准库3.老程序员快速学python编码规范4.python标准库中文手动翻译5.
python
马立弘
·
2016-11-04 11:17
python
内置函数
#
python内置函数
#abs绝对值# n = abs(-1)# print(n)#all()#所有为真,才为真#any()#只要有真,就为真# n = all([1,2,3,4])# print(n)
小寸头
·
2016-09-23 17:44
内置函数
python
python学习笔记11-
python内置函数
python学习笔记11-
python内置函数
一、查看python的函数介绍:https://docs.python.org/2/library/二、
python内置函数
1、abs获取绝对值:通过python
1350368559
·
2016-09-06 21:13
笔记
学习
python
Python
python内置函数
总结
取绝对值的内置函数:absprint(bas(-9))#-9的绝对值会被打印出来2.处理可迭代对象的函数(一):allname=("Tom","Jack","Lily")print(all(name))#因name这个变量定义的可迭代对象是一个正确的列表所以实print执行会返回Trsue,只有可迭代对象全为真,返回结果才为True.3.处理可迭代对象函数(二):anyname=("Tom","J
promot
·
2016-08-06 18:48
函数
内置
pyton
linux
Python sort( ) sorted( ) reverse( ) reversed( ) 总结
的使用详见:pythonsort()方法2》sorted()的使用详见:pythonsorted()函数3》reverse()的使用详见:pythonreverse()方法4》reversed()的使用详见:
python
sxingming
·
2016-05-09 16:00
排序
python
反转
python内置函数
proprety()
property可以将python定义的函数“当做”属性访问,从而提供更加友好访问方式,但是有时候setter/getter也是需要的假设定义了一个类Cls,该类必须继承自object类,有一私有变量__x1.第一种使用属性的方法:class Cls(object): def __init__(self): self.__x = None def getx(se
CyonDeer
·
2016-04-23 20:32
python
property
shell/python
python内置函数
super()
super是用来解决多重继承问题的,直接用类名调用父类方法在使用单继承的时候没问题,但是如果使用多继承,会涉及到查找顺序(MRO)、重复调用(钻石继承)等种种问题。总之前人留下的经验就是:保持一致性。要不全部用类名调用父类,要不就全部用super,不要一半一半。普通继承class FooParent(object): def __init__(self): self
luyaliang
·
2016-04-23 20:26
python
super
message
python内置函数
super()
super是用来解决多重继承问题的,直接用类名调用父类方法在使用单继承的时候没问题,但是如果使用多继承,会涉及到查找顺序(MRO)、重复调用(钻石继承)等种种问题。总之前人留下的经验就是:保持一致性。要不全部用类名调用父类,要不就全部用super,不要一半一半。普通继承class FooParent(object): def __init__(self): self.p
CyonDeer
·
2016-04-23 20:26
message
super
python
shell/python
上一页
14
15
16
17
18
19
20
21
下一页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他