我正在尝试使用python中的input()函数的结果命名实例。如何用字符串命名变量/实例名称?
我已经找到exec()函数并尝试了它,但语法错误。我不知道为什么会这样。
class Expression:
def __init__(self, form, sort, head, val):
self.form = form
self.sort = sort
self.head = head
self.val = val
class Head(Expression):
def __init__(self, pos, agr):
self.pos = pos
self.agr = agr
agr_pos = ['n', 'd', 'v', 'a', 'pn']
if self.pos not in agr_pos:
self.agr = None
class Agr(Head):
def __init__(self, agr_info):
self.per = agr_info[0]
self.num = agr_info[1]
self.gen = agr_info[2]
self.case= agr_info[3]
self.det = agr_info[4]
self.svagr = self.per + self.num + self.case
self.npagr = self.num + self.gen + self.case + self.det
class Val(Expression):
def __init__(self, spr, comps):
self.spr = spr
self.comps = comps
您不必仔细查看所有这些类描述,但我只是将其附加以解释我的“ Expression”类的外观。
(所有这些右侧都可以通过input()函数获得)
form = 'von'
pos = 'p'
agr = None
spr = 'underspecified'
comps = 'NP_3'
exec('{} = {}'.format(form, Expression(form, "word", Head(pos, agr), Val(spr, comps))))
这就是我试图做到的。
Traceback (most recent call last):
File "test.py", line 37, in <module>
exec('{} = {}'.format(form, Expression(form, "word", Head(pos, agr),
Val(spr, comps))))
File "<string>", line 1
von = <__main__.Expression object at 0x01080F10>
^
SyntaxError: invalid syntax
这是我从上面的代码中得到的。
我希望的结果是
von = Expression('von','word',Head('p',None),Val('underspecified','NP_3')
答案 0 :(得分:0)
首先,您在类class Head(Expression):
,class Agr(Head):
等中使用继承,但没有调用super().__init__
来实例化超类。所以我认为您不小心使用了它们,并且已经将它们删除了
评论员@Barmar和@KlausD也提到过。上面,使用exec
分配变量是一个坏主意,直接使用变量分配总是更好。
您正在使用的exec语句的计算结果为von = <__main__.Expression object at 0x10367e9b0>
,因为右侧打印了对象str
的{{1}}表示形式,您不能将其分配给变量。
做出这些假设,您的代码将更改为。
<__main__.Expression object at 0x10367e9b0>