Pycharm: Type hint list of items(Pycharm:类型提示项目列表)
问题描述
我的问题不同,因为我在使用类型提示时犯了一个错误.
My question is different because I made a mistake using type hint.
我在 pycharm 中发现了一个奇怪的类型:
I found a weird type hinging in pycharm:
Example
是我自己的课程.但我想这不太重要,因为 IDE 抱怨 list
类型没有定义 __getitem__
方法,这是不正确的.我想知道这是一个错误还是我以错误的方式使用它.
Example
is my own class. But I guess this is less important because the IDE is complaining about list
type does not define __getitem__
method which is no true. I'm wondering if it's a bug or I used it in a wrong way.
推荐答案
根据官方 PEP 来表示你应该使用 typing.List
的对象列表,而不是 list
内置的.
According to official PEP to denote list of objects you should use typing.List
, not list
builtin.
from typing import List
class Something:
pass
def f(seq: List[Something]): # no warning
for o in seq:
print(o)
2021 年 1 月更新:
Update January 2021:
请注意,内置泛型是在 Python 3.9 中实现的,如 中所述PEP585
.
Please note that built-in generics were implemented in Python 3.9, as described in PEP585
.
这篇关于Pycharm:类型提示项目列表的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Pycharm:类型提示项目列表
基础教程推荐
- 如何在海运重新绘制中自定义标题和y标签 2022-01-01
- 何时使用 os.name、sys.platform 或 platform.system? 2022-01-01
- 线程时出现 msgbox 错误,GUI 块 2022-01-01
- 用于分类数据的跳跃记号标签 2022-01-01
- Python kivy 入口点 inflateRest2 无法定位 libpng16-16.dll 2022-01-01
- Dask.array.套用_沿_轴:由于额外的元素([1]),使用dask.array的每一行作为另一个函数的输入失败 2022-01-01
- 在 Python 中,如果我在一个“with"中返回.块,文件还会关闭吗? 2022-01-01
- 使用PyInstaller后在Windows中打开可执行文件时出错 2022-01-01
- 筛选NumPy数组 2022-01-01
- 如何让 python 脚本监听来自另一个脚本的输入 2022-01-01