⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 hello.py

📁 Python语言编译器
💻 PY
字号:
# Display hello, world in a button; clicking it quits the programimport sysfrom Tkinter import *def main():	root = Tk()	button = Button(root)	button['text'] = 'Hello, world'	button['command'] = quit_callback	# See below	button.pack()	root.mainloop()def quit_callback():	sys.exit(0)main()

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -