利用python tkinter模块写的回答问题,禁止强关的小程序(任务管理器强关没有禁止)
直接附上代码
from tkinter import *
import tkinter.messagebox as messagebox
class Application(Frame):
def __init__(self, master=None):
Frame.__init__(self, master)
self.pack()
self.createWidgets()
def createWidgets(self):
self.tiplabel = Label(self, text='输入“我爱你”,退出该程序')
self.tiplabel.pack()
self.valueInput = Entry(self)
self.valueInput.pack()
self.alertButton = Button(self, text='验证', command=self.proof)
self.alertButton.pack()
def proof(self):
keyvalue = self.valueInput.get()
if keyvalue == '我爱你':
messagebox.showinfo('提示', '你的眼光很对')
root.destroy()
else:
messagebox.showerror('错误', '我觉得你可以再说一次')
def c