请编写一个小程序,实现输入任意中文即弹窗提示:你好
这是一个Python3的程序,需要使用tkinter库来实现弹窗。以下是代码:
import tkinter as tk
def say_hello():
tk.messagebox.showinfo("提示", "你好")
def main():
root = tk.Tk()
root.withdraw()
text = tk.simpledialog.askstring("输入", "请输入中文:")
if text is not None and text != "":
say_hello()
else:
tk.messagebox.showwarning("警告", "输入不能为空!")
root.destroy()
if __name__ == "__main__":
main()
程序首先创建一个隐藏的窗口,然后通过tkinter库提供的对话框,让用户输入中文。如果输入不为空,则弹出提示窗口,显示“你好”两个字;否则弹出一个警告窗口,提示输入不能为空。程序最后销毁窗口,结束程序的运行。
原文地址: https://www.cveoy.top/t/topic/ugK 著作权归作者所有。请勿转载和采集!