界面编程输出信息(格式)

python + pyqt5 +pyinstaller 打包后 界面输出提示信息

sys.stdout.write('Thread Communicate:data:成功将' + asin + '商品加入购物车' + "\n")
sys.stdout.flush()

启动窗口配置:

  import sys, io
   sys.stdout = io.TextIOWrapper(sys.stdout.buffer, encoding='utf-8')

stdout.png

你可能感兴趣的:(界面编程输出信息(格式))