鱼C论坛

 找回密码
 立即注册
楼主: zhangjinxuan

[作品展示] 使用 Python 的 tkinter 模块来做一个数独游戏【原创】【有鱼币】

  [复制链接]
抢楼 抢楼 查看抢中楼层 本帖为抢楼帖,欢迎抢楼!  【还有 结束 】 奖励楼层: 6,6*,*6,*6*,*6 
发表于 2023-11-26 11:24:22 | 显示全部楼层
技术含量很高
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

 楼主| 发表于 2023-11-26 14:43:26 | 显示全部楼层
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2023-11-26 15:26:22 | 显示全部楼层
from tkinter import *
import random

tkscore = random.randint(0, 9)
r1 = input('0, 0 输入什么:')
r1 = input('0, 0 输入什么:')
r1 = input('0, 0 输入什么:')
r1 = input('0, 0 输入什么:')
r1 = input('0, 0 输入什么:')
r1 = input('0, 0 输入什么:')
r1 = input('0, 0 输入什么:')


root = Tk()

button_1 = Button(text=tkscore, bd='yellow').grid(row=0, culunm=0)
button_2 = Button(text=, bg='yellow').grid(row=0, culunm=1)
button_3 = Button(text=, bg='yellow').grid(row=0, culunm=2)

button_4 = Button(text=, bg='yellow').grid(row=1, culunm=0)
button_5 = Button(text=, bg='yellow').grid(row=1, culunm=1)
button_6 = Button(text=, bg='yellow').grid(row=1, culunm=2)

button_7 = Button(text=, bg='yellow').grid(row=2, culunm=0)
button_8 = Button(text=, bg='yellow').grid(row=2, culunm=1)
button_9 = Button(text=tkscore, bd='yellow').grid(row=2, culunm=2)

mainloop()



想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2023-11-26 15:27:15 | 显示全部楼层
METALARISING 发表于 2023-11-26 15:26
from tkinter import *
import random

发错
再来
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2023-11-26 15:42:31 | 显示全部楼层

from tkinter import *
import random

tkscore = random.randint(0, 9)
r2 = input('0, 1 输入什么:')
try:
    r2 = input('0, 1 输入什么:')
except ValueError as e:
    print(e.reason)
except TypeError as e:
    print(e.reason)
r3 = input('0, 2 输入什么:')
try:
    r3 = input('0, 2 输入什么:')
except ValueError as e:
    print(e.reason)
except TypeError as e:
    print(e.reason)
r4 = input('1, 0 输入什么:')
try:
    r4 = input('1, 0 输入什么:')
except ValueError as e:
    print(e.reason)
except TypeError as e:
    print(e.reason)
r6 = input('1, 2 输入什么:')
try:
    r6 = input('1, 2 输入什么:')
except ValueError as e:
    print(e.reason)
except TypeError as e:
    print(e.reason)
r7 = input('2, 0 输入什么:')
try:
    r7 = input('2, 0 输入什么:')
except ValueError as e:
    print(e.reason)
except TypeError as e:
    print(e.reason)
r8 = input('2, 1 输入什么:')
try:
    r8 = input('2, 1 输入什么:')
except ValueError as e:
    print(e.reason)
except TypeError as e:
    print(e.reason)

root = Tk()

button_1 = Button(text=tkscore, bd='yellow').grid(row=0, culunm=0)
button_2 = Button(text=r2, bg='yellow').grid(row=0, culunm=1)
button_3 = Button(text=r3, bg='yellow').grid(row=0, culunm=2)

button_4 = Button(text=r4, bg='yellow').grid(row=1, culunm=0)
button_5 = Button(text=tkscore, bg='yellow').grid(row=1, culunm=1)
button_6 = Button(text=r6, bg='yellow').grid(row=1, culunm=2)

button_7 = Button(text=r7, bg='yellow').grid(row=2, culunm=0)
button_8 = Button(text=r8, bg='yellow').grid(row=2, culunm=1)
button_9 = Button(text=tkscore, bd='yellow').grid(row=2, culunm=2)

if r2 = r3 = r4 = r6 = r7 = r8:
    print('no no')

if r2 != r3 != r4 != r6 != r7 != r8:
    print('yes~ yes~')

mainloop()
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2023-11-26 17:06:07 | 显示全部楼层
286
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2023-11-29 09:04:33 | 显示全部楼层
想试试
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2023-11-29 20:03:53 | 显示全部楼层
好帖
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

 楼主| 发表于 2023-11-30 10:38:13 | 显示全部楼层
慢慢咕,不急
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2023-12-2 20:41:50 | 显示全部楼层
看看
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

 楼主| 发表于 2023-12-8 10:18:46 | 显示全部楼层
捞不了一点
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2023-12-8 14:42:28 | 显示全部楼层
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2023-12-12 14:08:51 | 显示全部楼层
学习
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2023-12-13 09:59:31 | 显示全部楼层
好帖
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2023-12-13 10:00:11 | 显示全部楼层
育碧
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2023-12-15 06:10:24 From FishC Mobile | 显示全部楼层
看看
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2023-12-15 17:25:25 | 显示全部楼层
生成数字:1
谁来挑战?
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2023-12-15 20:59:17 | 显示全部楼层

好帖
好帖
好帖
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2024-1-11 17:45:07 | 显示全部楼层
查看:5175
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2024-1-13 09:31:26 | 显示全部楼层
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-11-5 12:18

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表