使用Python的tkinter库
```python
import tkinter as tk
import random
定义表白的话语列表
messages = ["我爱你", "我喜欢你", "你是我的唯一", "我想和你在一起", "你是我生命中的阳光"]
定义一个函数,用于显示随机的表白话语
def show_message():
message = random.choice(messages)
label.config(text=message)
创建主窗口
root = tk.Tk()
root.title("表白程序")
创建一个标签,用于显示表白话语
label = tk.Label(root, text="", font=("Arial", 24))
label.pack(pady=50)
创建一个按钮,用于显示随机的表白话语
button = tk.Button(root, text="显示表白话语", command=show_message)
button.pack()
运行主循环
root.mainloop()
```
使用HTML和JavaScript
```html
表白程序