- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我不是专业程序员,所以我的知识有很多漏洞(请注意)。
我在 python 3.7 中编写了一些库。但现在我想从使用 python 2.7 的 3D 应用程序访问它们。他们拥有的唯一真正的 3.7 特定功能(据我目前所知)是 configparser(相对于 ConfigParser)和打印功能。
我通过捕获导入错误然后加载 2.7 版本来处理 configparser 问题。
我试图通过将此行添加到我在 3D 应用程序中运行的脚本的顶部来处理打印功能:
from __future__ import print_function
但是,当我导入一个包含 python 3 样式打印函数的模块时,出现语法错误。但是,如果我在加载的模块中包含 from __future__
语句,一切正常。显然,我在这里遇到了我的知识限制。
这是我正在导入的模块的完整代码(称为 test.py):
import sys
def print_error():
print("AND THIS IS?", file=sys.stderr)
下面是调用此代码的 3D 应用程序(运行 python 2.7)中的代码:
from __future__ import print_function
import sys
sys.path.append("/home/me/Documents/dev/")
print("WHY IS THIS NOT A SYNTAX ERROR?", file=sys.stderr)
from mylib import test
当我运行这段代码时,我得到以下输出:
WHY IS THIS NOT A SYNTAX ERROR?
00:00:08 Traceback (most recent call last):
00:00:08 File "<string>", line 7, in <module>
00:00:08 File "/home/me/Documents/dev/mylib/test.py", line 4
00:00:08 print("AND THIS IS?", file=sys.stderr)
00:00:08 ^
00:00:08 SyntaxError: invalid syntax
00:00:08
但是如果我将 from __future__
行放在 test.py 模块中,一切都会正确运行。
我做错了什么吗?或者我是否需要在每个模块中都有这一行。如果是这样,我如何协调它与我将从 python 3.7 调用这些库的时间(我不想在其中加载打印函数 from __future__
)?
根据我的研究,似乎 from __future__
是一个编译器指令,它控制脚本在运行时的编译方式?或许?我在这方面不知所措。但这是否意味着每次加载模块时都必须提醒编译器使用 from __future__
?
感谢所有帮助!
最佳答案
在 Python 3 中,print
是 a function , 在 Python 2 中它是一个 keyword ,所以基本上在 Python 2 中,它不需要参数 file
。
您必须在每个模块的顶部添加 from __future__ import print_function
,以禁用该语句并使用 print()
函数,在以下位置使用此 future 语句模块的顶部。
From the docs , __future__
有 3 个目的:
避免混淆分析导入语句和查找它们正在导入的模块的现有工具。
确保 future 的语句在 2.1 之前的版本下运行至少会产生运行时异常。
记录何时引入了不兼容的更改,以及何时将(或曾经)强制执行这些更改。
关于python: from __future__ import print_function 必须在每个加载的模块中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55507609/
如果“print”没有被列为方法之一,这样说是否正确 __future__.__dict__.keys() 那么我使用的Python版本不提供 future 的打印功能? (我使用的是 Python
我一直对 __future__ 着迷模块——特别是,它能够改变语句在 python 中的解析方式。 最有趣的是如何做类似的事情 from __future__ import print_functio
在 python 2.7 中,通过使用 from __future__ import division, print_function 我现在可以让 print(1/2) 显示 0.5。 但是是否可
Python doc __future__ 在 python 文档中关于 __future__下表显示了 3.7.0b1 中的“可选”和“4.0 中的强制性”注释 但是我仍然可以在 3.8.2 中使用
这有效:(结果 = 0.01) from __future__ import division def division_test(): print 10/1000 division_test
使用 Cython header 指令和使用 future 导入的正确方法是什么? Python 2.7.x 例子: 1: from __future__ import division 2: #cy
我可以放置: from __future__ import absolute_import 在我的包的顶层目录 __init__.py 中,并保证 absolute_import 将应用于在该包或子包
运行语句时 from __future__ import annotations 我收到以下错误: Traceback (most recent call last): File "/usr/li
我正在为一个目前只有 Python 2 的项目贡献代码,以允许它在 Python 3 上运行。我应该输入以下内容吗: from __future__ import (unicode_literals,
我有错误,因为 No module named __future__。我使用 tensorflow,它有 Python2.7。运行程序后,出现如下所示的错误。 import tensorflow Tr
规范:Python 2.7 我正在开发一个包含多个模块的项目,我想在所有模块中激活 __future__ 模块的一些功能。我想在一个模块上导入我需要的所有功能,然后将该单个模块导入到每个其他模块,并让
我已经回答了有关future 模块如何工作的问题。 What is __future__ in Python used for and how/when to use it, and how it w
我想在 exec 函数中使用 future 模块。但看起来只在当前的 exec 函数中生效,而不会在后面的 exec 调用中生效。以下代码显示了问题。第二个 future 模块生效,您可以看到输出 h
所有类都需要先定义才能用作类型提示。为了在某些情况下解决这个问题,__future__ import is recommended 。这就是为什么以下代码可以正常工作(在 Python 3.7 中
我个人不明白为什么 from __future__ 导入必须在文件的顶部。我要问的是为什么,为什么他们必须在顶部?这是什么原因? 最佳答案 它们可以更改语言语法,包括但不限于 import 语句的行为
我不是专业程序员,所以我的知识有很多漏洞(请注意)。 我在 python 3.7 中编写了一些库。但现在我想从使用 python 2.7 的 3D 应用程序访问它们。他们拥有的唯一真正的 3.7 特定
这是我的应用程序中已有的其他导入 import os import sys from google.appengine.ext.webapp import template import cgi im
我的 python 脚本开始于 from __future__ import division 在 RI 我做 library(rPython) python.load("myscript.py")
在 python 2.x 中,两个整数相除返回一个整数。但是,如果您使用 from ___future___ import division 你可以获得一个浮点值: >>> 3/2 1 >>> fro
我编写了以下 doctest x.doctest: This is something: >>> x = 3 + 4 foo bar something else: >>> from
我是一名优秀的程序员,十分优秀!