1. 首页
  2. 编程语言
  3. Python
  4. 一个不可错过的Python求爱程序

一个不可错过的Python求爱程序

上传者: 2023-07-28 16:24:32上传 PY文件 1.07KB 热度 12次

部分代码如下:import tkinter as tk

import tkinter.messagebox

root = tk.Tk()

root.title('爱心')

root.resizable(0, 0)

root.wm_attributes("-toolwindow", 1)

screenwidth = root.winfo_screenwidth()

screenheight = root.winfo_screenheight()

widths = 300

heights = 100

x = (screenwidth - widths) / 2

y = (screenheight - heights) / 2

root.geometry('%dx%d+%d' % (widths, heights, x, y))

tk.Label(root, text='亲爱的,做我女朋友好吗?', width=37, font=('宋体', 12)).place(x=0, y=10)

def OK():

# 同意按钮...

用户评论