标签: python pyqt pyqt4 python-module qlineedit
我正在编写一个GUI。我的GUI通过QLineEdit接收一个整数输入,并且该输入应传输到另一个python脚本中,在其中执行计算。 GUI.py文件通过Calculation.py调用python文件subprocess.call。当我尝试将参数发送到Calculation.py时,它将引发错误:
QLineEdit
GUI.py
Calculation.py
subprocess.call
error "TypeError: Unsupported operand type for /: 'str' and 'int'".
任何帮助将不胜感激。