Py之GUI之PyQt:成功解决Exception "unhandled TypeError" expected str, bytes or os.PathLike object, not tuple
目录
解决问题
Exception "unhandled TypeError"
expected str, bytes or os.PathLike object, not tuple
解决思路
例外“未处理的类型错误,期望的STR、字节或OS.路径型对象,而不是元组
解决方法
调用一个函数时,赋值的输出参数不对
my_file=QFileDialog.getSaveFileName(self, u'文件另存为', '')
改为
my_fi