导语:
本文主要介绍了关于Python内置函数一览表的相关知识,包括isinstance函数,以及基本的python内置函数这些编程知识,希望对大家有参考作用。
为了提高程序员的开发效率,Python提供了很多可以直接使用的函数(初学者可以先把它理解为方法),每个函数都可以帮助程序员实现某些特定的功能。
比如print在Python 2.x中只是一个关键字,但是在Python 3.x中print是一个打印输出的函数,也是一个内置函数。通过这个函数,我们可以直接输出数据进行操作,比如:
>>>print("php中文网")
php中文网
除了 print() 函数外,Python 还提供了许多内置函数。表 1 列出了 Python 3.x 环境中的所有内置函数。
内置函数 | ||||
---|---|---|---|---|
abs() | delattr() | hash() | memoryview() | set() |
all() | dict() | help() | min() | setattr() |
any() | dir() | hex() | next() | slicea() |
ascii() | divmod() | id() | object() | sorted() |
bin() | enumerate() | input() | oct() | staticmethod() |
bool() | eval() | int() | open() | str() |
breakpoint() | exec() | isinstance() | ord() | sum() |
bytearray() | filter() | issubclass() | pow() | super() |
bytes() | float() | iter() | print() | tuple() |
callable() | format() | len() | property() | type() |
chr() | frozenset() | list() | range() | vars() |
classmethod() | getattr() | locals() | repr() | zip() |
compile() | globals() | map() | reversed() | __import__() |
complex() | hasattr() | max() | round() |
需要注意的是,开发者不建议使用上述内置函数的名称作为标识符(作为变量、函数、类、模板或其他对象的名称)。虽然这样做Python解释器不会报错,但是会导致内置的同名函数被覆盖,从而无法使用。例如:
>>> print="php中文网" #Python解释器不会报错
>>> print(print)
Traceback (most recent call last):
File "<pyshell#1>", line 1, in <module>
print(print)
TypeError: 'str' object is not callable
本文为原创文章,版权归知行编程网所有,欢迎分享本文,转载请保留出处!
你可能也喜欢
- ♥ 如何计算python列表中元素的频率?10/05
- ♥ 什么是python语法08/19
- ♥ python如何对矩阵进行转置?09/05
- ♥ 如何重复运行python程序08/24
- ♥ 如何在 Python 中使用 assert 函数09/02
- ♥ 如何编写访问网络设备的Python脚本?01/06
内容反馈