界面编程输出信息(格式)
2019-03-30 本文已影响0人
戒灵
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