消息框模塊-tkinter

import tkinter.messagebox  # 這個是消息框,對話框的關鍵from tkinter import *error_fp_list = [[973.45, '河北xx貿易有限公司', '中國民生銀行石家莊中華南大街支行', '691988093'], [1359.22, '鹿泉區xxx', '石家莊交通銀行鹿泉支行', 'xxx80100592xxx']]show_fp = ''for error_fp in error_fp_list:    str_fp = ','.join([str(i) for i in error_fp]) + '\n'    show_fp += str_fptk = Tk()tk.withdraw()tkinter.messagebox.showinfo("提示", show_fp)
相關文章
相關標籤/搜索