如何将多个变量传递给PyQT5中的QMessageBox

时间:2019-05-15 18:12:21

标签: python pyqt

我正在尝试将多个变量传递给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”对象不可调用

关于如何做到这一点的任何建议?

0 个答案:

没有答案