python gui界面酒店管理系统
时间: 2023-12-19 22:32:21 浏览: 151
基于Python的酒店管理系统
5星 · 资源好评率100%
```python
import tkinter as tk
# 创建主窗口
root = tk.Tk()
root.title("酒店管理系统")
# 添加组件
label = tk.Label(root, text="欢迎使用酒店管理系统")
label.pack()
# 运行主循环
root.mainloop()
```
```python
import tkinter as tk
# 创建主窗口
root = tk.Tk()
root.title("酒店管理系统")
# 添加按钮
button1 = tk.Button(root, text="预订房间")
button1.pack()
button2 = tk.Button(root, text="取消预订")
button2.pack()
button3 = tk.Button(root, text="查看房间状态")
button3.pack()
# 运行主循环
root.mainloop()
```
阅读全文