python-内置函数

Posted vaon

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python-内置函数相关的知识,希望对你有一定的参考价值。

计算长度

In [140]: a=hello

In [141]: len(a)
Out[141]: 5

取极值

In [142]: max(1234)
Out[142]: 4

In [143]: min(1234)
Out[143]: 1

枚举

可以同时遍历索引和遍历元素

In [151]: str=hello

In [152]: for i,j in enumerate(str):
   .....:     print i,j
   .....:     
0 h
1 e
2 l
3 l
4 o

比较

cmp()

In [37]: cmp(1,2)
Out[37]: -1
In [38]: cmp(2,1)
Out[38]: 1
In [39]: cmp(1,1)
Out[39]: 0

查看变量类型

type(变量名)

In [42]: a=1
In [43]: type(a)
Out[43]: int

类型转换

In [35]: a=123
In [36]: type(a)
Out[36]: int

In [37]: a=long(a)
In [38]: type(a)
Out[38]: long
In [40]: str(1)
Out[40]: 1

zip

In [153]: s1=123

In [154]: s2=abc

In [155]: s3=ABC

In [156]: zip(s1,s2,s3)
Out[156]: [(1, a, A), (2, b, B), (3, c, C)]

 

以上是关于python-内置函数的主要内容,如果未能解决你的问题,请参考以下文章

python有多少内置函数

VBS 环境下如何调用EXCEL内置函数

查找内置 Python 函数的源代码?

python 内置函数

熟练掌握Python的内置函数,加快编程速度

python--内置函数, 匿名函数