问题:类型提示指定类型的列表
使用Python 3的功能注释,可以指定包含在同类列表(或其他集合)中的项的类型,以便在PyCharm和其他IDE中进行类型提示。
一个int列表的伪python代码示例:
def my_func(l:list<int>):
pass
我知道有可能使用Docstring …
def my_func(l):
"""
:type l: list[int]
"""
pass
…但是我更喜欢注释样式。
回答 0
回答我自己的问题;TLDR的答案是“ 否 ”。
更新2
在2015年9月,Python 3.5发行了对Type Hints的支持,并包含一个新的打字模块。这允许指定集合中包含的类型。截至2015年11月,JetBrains PyCharm 5.0完全支持Python 3.5包含类型提示,如下所示。
更新1
截至2015年5月,PEP0484(类型提示)已被正式接受。草案的实现也可以在github的ambv / typehinting下找到。
原始答案
自2014年8月起,我已经确认无法使用Python 3类型注释在集合中指定类型(例如:字符串列表)。
诸如reStructuredText或Sphinx之类的格式化文档字符串的使用是可行的替代方法,并且受各种IDE支持。
看来,Guido还本着mypy的精神考虑了扩展类型注释的想法:http ://mail.python.org/pipermail/python-ideas/2014-August/028618.html
回答 1
现在Python 3.5正式发布了,这里有Type Hints支持模块- typing
以及相关的List
通用容器 “类型”。
换句话说,现在您可以执行以下操作:
from typing import List
def my_func(l: List[int]):
pass
回答 2
自PEP 484起已添加类型注释
from . import Monitor
from typing import List, Set, Tuple, Dict
active_monitors = [] # type: List[Monitor]
# or
active_monitors: List[Monitor] = []
# bonus
active_monitors: Set[Monitor] = set()
monitor_pair: Tuple[Monitor, Monitor] = (Monitor(), Monitor())
monitor_dict: Dict[str, Monitor] = {'codename': Monitor()}
# nested
monitor_pair_list: List[Dict[str, Monitor]] = [{'codename': Monitor()}]
目前,这对于使用Python 3.6.4的PyCharm来说是有用的
回答 3
在BDFL的支持下,现在几乎可以确定python(可能是3.5)将通过函数注释为类型提示提供标准化的语法。
https://www.python.org/dev/peps/pep-0484/
正如PEP中所引用的那样,有一个名为mypy的实验型类型检查器(有点像pylint,但对于类型而言)已经使用此标准,并且不需要任何新语法。
回答 4
从Python 3.9开始,内置类型在类型注释方面是通用的(请参阅PEP 585)。这允许直接指定元素的类型:
def my_func(l: list[int]):
pass
各种工具可能早于Python 3.9支持此语法。如果在运行时未检查注释,则使用引号或语法有效__future__.annotations
。
# quoted
def my_func(l: 'list[int]'):
pass
# postponed evaluation of annotation
from __future__ import annotations
def my_func(l: list[int]):
pass