源代码如下,使用python3.7和3.8版本运行均报错为TypeError: 'type' object is not subscriptable
使用python3.10运行结果成功。
下述为类型注释相关知识点,运行成功需要较高版本的python
def time(s:dict[str, int], n:int = 3) -> list:
return list(s.keys()) * n
print(time({'A': 1, 'B': 2, 'C': 3}))
源代码如下,使用python3.7和3.8版本运行均报错为TypeError: 'type' object is not subscriptable
使用python3.10运行结果成功。
下述为类型注释相关知识点,运行成功需要较高版本的python
def time(s:dict[str, int], n:int = 3) -> list:
return list(s.keys()) * n
print(time({'A': 1, 'B': 2, 'C': 3}))