假设我定义了一个带有类提示并带有类型提示的类(例如,类似于新的python 3.7数据类)
class Person: name: str age: int def parse_me(self): "what do I do here??"
我如何得到双(variable name, variable type)?
(variable name, variable type)
python
python ×1