- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
Python doc __future__
在 python 文档中关于 __future__
下表显示了
3.7.0b1 中的“可选”和“4.0 中的强制性”注释
但是我仍然可以在 3.8.2 中使用注释而不导入注释,那么它有什么用呢。
>>> def add_int(a:int, b:int) -> int:
... return a + b
>>> add_int.__annotations__
{'a': <class 'int'>, 'b': <class 'int'>, 'return': <class 'int'>}
我怀疑我不清楚这里“可选输入”和“强制输入”的含义
最佳答案
强制是一个有趣的词选择。我想这意味着它在语言中是默认的。您不必使用 from __future__ import annotations
启用它annotations
功能是指 PEP 563:延期 注释的评估。它是对现有 annotations feature 的增强它最初在 python 3.0 中引入并重新定义为 type hints在 python 3.5 中,这就是为什么你的代码在 python 3.8 下工作的原因。
这是可选的 from __future__ import annotations
python 3.7+的变化:
class A:
def f(self) -> A: # NameError: name 'A' is not defined
pass
但这有效
from __future__ import annotations
class A:
def f(self) -> A:
pass
见
this python 3.7 中关于延迟注释的新内容:
Since this change breaks compatibility, the new behavior needs to be enabled on a per-module basis in Python 3.7 using a
__future__
import:
from __future__ import annotations
It will become the default in Python 3.10.
关于python - 从 __future__ 导入注释,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61544854/
如果“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
我是一名优秀的程序员,十分优秀!