我正在尝试将多个变量传递给QMessageBox
我能够像这样传递一个变量:
x = 10
QMessageBox.about(self, "Message", "value of x is %d" % x)
但是无法传递多个变量。我尝试过:
x = 10
y = 5
QMessageBox.about(self, "Message", "value of x is %d and y is %d" % x,y)
格式字符串的参数太少
和
QMessageBox.about(self, "Message", "value of x is %d " % x, "and y is %d" % y)
TypeError:“ str”对象不可调用
关于如何做到这一点的任何建议?