马上注册,结交更多好友,享用更多功能^_^
您需要 登录 才可以下载或查看,没有账号?立即注册
x
我这个猜数字比其他人的高级多了
不知道有没有人来看看
期待大佬点评 @一个账号 @乘号
求点评
我还没被人点评过呢
话不多说
上代码
# coding=gbk
from tkinter import *
from tkinter import messagebox as g
import random
root = Tk()
root.title("猜数字")
root.geometry("250x150")
shu = random.randint(1, 100)
def ti_jiao():
a_g = int(a.get())
if a_g == shu:
g.showinfo('正确', '恭喜你答对了')
else:
if a_g > shu:
g.showinfo('错误', '你猜大了')
elif a_g < shu:
g.showinfo('错误', '你猜小了')
Label(root, text = '1~100选一个数', bg = 'yellow', fg = 'blue',
font = ('华文行楷', 15)).place(x = 50, y = 0)
a = Entry(root, bg = 'yellow', fg = 'blue', font = ('华文行楷', 15))
a.place(x = 20, y = 50)
b = Button(root, text='提交', bg = 'yellow', fg = 'blue', font = ('华文行楷', 15), command = ti_jiao)
b.place(x = 80, y = 90)
root.mainloop()
上图片
记得点评
|