前言
内置函数,一般都是因为使用比较频繁或是元操作,所以通过内置函数的形式提供出来。在Python中,python给我们提供了很多已经定义好的函数,这里列出常用的内置函数,分享出来供大家参考学习,下面话不多说,来一起看看详细的介绍吧。
一、数学函数
-
abs()
求数值的绝对值 -
min()
列表的最下值 -
max()
列表的最大值 -
divmod()
取膜 -
pow()
乘方 -
round()
浮点数
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
#abs 绝对值函数 输出结果是1 print abs ( - 1 ) #min 求列表最小值 #随机一个1-20的步长为2的列表 lists = range ( 1 , 20 , 2 ) #求出列表的最小值为1 print min (lists) #max 求列表的最大值 结果为19 print max (lists) #divmod(x,y) 参数:2个 返回值:元祖 #函数计算公式为 ((x-x%y)/y, x%y) print divmod ( 2 , 4 ) #pow(x,y,z) #参数:2个或者3个 z可以为空 # 计算规则 (x**y) % z print pow ( 2 , 3 , 2 ) #round(x) #将传入的整数变称浮点 print round ( 2 ) |
二、功能函数
-
函数是否可调用:
callable(funcname)
-
类型判断:
isinstance(x,list/int)
-
比较:
cmp(‘hello','hello')
-
快速生成序列:
(x)range([start,] stop[, step])
-
类型判断
type()
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#callable()判断函数是否可用 返回True ,这里的函数必须是定义过的 def getname(): print "name" print callable (getname) #isinstance(object, classinfo) # 判断实例是否是这个类或者object是变量 a = [ 1 , 3 , 4 ] print isinstance (a, int ) #range([start,] stop[, step])快速生成列表 # 参数一和参数三可选 分别代表开始数字和布长 #返回一个2-10 布长为2的列表 print range ( 2 , 10 , 2 ) #type(object) 类型判断 print type (lists) |
三、类型转换函数
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#int(x)转换为int类型 print int ( 2.0 ) #返回结果<type 'int'> print type ( int ( 2.0 )) #long(x) 转换称长整形 print long ( 10.0 ) #float(x) 转称浮点型 print float ( 2 ) #str(x)转换称字符串 print str () #list(x)转称list print list ( "123" ) #tuple(x)转成元祖 print tuple ( "123" ) #hex(x) print hex ( 10 ) #oct(x) print oct ( 10 ) #chr(x) print chr ( 65 ) #ord(x) print ord ( 'A' ) |
四、字符串处理
1
2
3
4
5
6
7
8
9
10
11
12
13
|
name = "zhang,wang" #capitalize首字母大写 #Zhang,wang print name.capitalize() #replace 字符串替换 #li,wang print name.replace( "zhang" , "li" ) #split 字符串分割 参数:分割规则,返回结果:列表 #['zhang', 'wang'] print name.split( "," ) |
五、序列处理函数
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
strvalue = "123456" a = [ 1 , 2 , 3 ] b = [ 4 , 5 , 6 ] #len 返回序列的元素的长度6 print len (strvalue) #min 返回序列的元素的最小值1 print min (strvalue) #max 返回序列元素的最大值6 print max (strvalue) #filter 根据特定规则,对序列进行过滤 #参数一:函数 参数二:序列 #[2] def filternum(x): if x % 2 = = 0 : return True print filter (filternum,a) #map 根据特定规则,对序列每个元素进行操作并返回列表 #[3, 4, 5] def maps(x): return x + 2 print map (maps,a) #reduce 根据特定规则,对列表进行特定操作,并返回一个数值 #6 def reduces(x,y): return x + y print reduce (reduces,a) #zip 并行遍历 #注意这里是根据最序列长度最小的生成 #[('zhang', 12), ('wang', 33)] name = [ "zhang" , "wang" ] age = [ 12 , 33 , 45 ] print zip (name,age) #序列排序sorted 注意:返回新的数列并不修改之前的序列 print sorted (a,reverse = True ) |
总结
以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作能带来一定的帮助,如果有疑问大家可以留言交流,谢谢大家对服务器之家的支持。
原文链接:http://blog.csdn.net/baidu_31956557/article/details/74182289