Python无法拒绝的表白界面完整代码

Python无法拒绝的表白界面完整代码_第1张图片

运行时弹出界面
Python无法拒绝的表白界面完整代码_第2张图片
当点击“不要”时弹出
Python无法拒绝的表白界面完整代码_第3张图片
当点击“×”时弹出
Python无法拒绝的表白界面完整代码_第4张图片

文章目录

  • 环境需求
  • 完整代码
  • 详细分析

环境需求

  • python3.11.4及以上版本
  • PyCharm Community Edition 2023.2.5
  • pyinstaller6.2.0可选,这个库用于打包,使程序没有python环境也可以运行,如果想发给好朋友的话需要这个库哦~)

【注】

  • python环境搭建请见:https://want595.blog.csdn.net/article/details/134586653
  • pyinstaller使用教程见:https://want595.blog.csdn.net/article/details/134106807

完整代码

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+%d' % (

你可能感兴趣的:(《,Python基础,》,python,开发语言)