它很可能仅因为将语句分成多行才突出显示最后一行。
解决 实际 问题的方法很可能会发生变化
self.fields['question_' + question.id]
至
self.fields['question_' + str(question.id)]
正如您可以在Python解释器中快速测试一样,将字符串和数字加在一起是行不通的:
>>> 'hi' + 6Traceback (most recent call last): File "<pyshell#0>", line 1, in <module> 'hi' + 6TypeError: cannot concatenate 'str' and 'int' objects>>> 'hi' + str(6)'hi6'
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)