我想更新数据类中的字段,但我只在运行时知道字段名称,而不是在开发期间。
#!/usr/bin/env python3.6
# -*- coding: utf-8 -*-
from dataclasses import dataclass # I use the backport to 3.6
@dataclass
class Template:
number: int = 0
name: str = "^NAME^"
oneInstance = Template()
print(oneInstance) # Template(number=0, name='^NAME^')
# If I know the variable name during development, I can do this:
oneInstance.number=77
# I get this from a file during runtime:
para = {'name': 'Jones'}
mykey = 'name'
# Therefore, I used exec:
ExpToEval = "oneInstance." + mykey + ' = "' + para[mykey] + '"'
print (ExpToEval) # oneInstance.name = "Jones"
exec(ExpToEval) # How can I do this in a more pythonic (and secure) way?
print(oneInstance) # Template(number=77, name='Jones')
我需要类似的东西
oneInstance[mykey] = para[mykey]
但这最终导致“TypeError:'模板'对象不支持项目分配”