TypedDict when keys have non alphanumeric characters

拈花ヽ惹草 提交于 2020-02-22 08:05:37

问题


If I have a key in a dictonary, such as A(2). How can I create a TypedDict with this field?

E.g

from typing import TypedDict

class RandomAlphabet(TypedDict):
    A(2): str

is not valid Python code, resulting in the error:

SyntaxError: illegal target for annotation

回答1:


According to PEP 589 you can use alternative syntax to create a TypedDict as follows:

Movie = TypedDict('Movie', {'name': str, 'year': int})

So, in your case, you could write:

from typing import TypedDict

RandomAlphabet = TypedDict('RandomAlphabet', {'A(2)': str})


来源:https://stackoverflow.com/questions/60003444/typeddict-when-keys-have-non-alphanumeric-characters

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!