28.4. future_builtins — Python 3 builtins - Python 2.7.18 documentation 编辑
New in version 2.6.
This module provides functions that exist in 2.x, but have different behavior in Python 3, so they cannot be put into the 2.x builtins namespace.
Instead, if you want to write code compatible with Python 3 builtins, import them from this module, like this:
from future_builtins import map, filter ... code using Python 3-style map and filter ...
The 2to3 tool that ports Python 2 code to Python 3 will recognize this usage and leave the new builtins alone.
Note
The Python 3 print()
function is already in the builtins, but cannot be accessed from Python 2 code unless you use the appropriate future statement:
from __future__ import print_function
Available builtins are:
future_builtins.
ascii
(object)Returns the same as
repr()
. In Python 3,repr()
will return printable Unicode characters unescaped, whileascii()
will always backslash-escape them. Usingfuture_builtins.ascii()
instead ofrepr()
in 2.6 code makes it clear that you need a pure ASCII return value.
future_builtins.
filter
(function, iterable)Works like
itertools.ifilter()
.
future_builtins.
hex
(object)Works like the built-in
hex()
, but instead of__hex__()
it will use the__index__()
method on its argument to get an integer that is then converted to hexadecimal.
future_builtins.
map
(function, iterable, ...)Works like
itertools.imap()
.Note
In Python 3,
map()
does not acceptNone
for the function argument.
future_builtins.
oct
(object)Works like the built-in
oct()
, but instead of__oct__()
it will use the__index__()
method on its argument to get an integer that is then converted to octal.
future_builtins.
zip
(*iterables)Works like
itertools.izip()
.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论