鱼C论坛

 找回密码
 立即注册
查看: 613|回复: 3

[已解决]我想实现Ratiobutton更新,结果失败,求解

[复制链接]
发表于 2020-4-1 20:05:28 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
代码如下所示,我想实现Radiobutton的替换,为什么这样替换不了呢?
from tkinter import *

x = 0

root = Tk()

answers = {}
answers[0] = [('草莓', 2), ('苹果', 3), ('西瓜', 5), ('菠萝', 10), ('橘子', 15)]
answers[1] = [('郊外', 2), ('电影院', 3), ('公园', 5), ('商场', 10), ('酒吧', 15), ('练歌房', 20)]

v = StringVar()

if x <= 14:
    if x == 0:
        for ans, point in answers[x]:
            choices1 = Radiobutton(root, text=ans, variable=v, value=point, padx=100, justify='left')
            choices1.pack()
    if x == 1:
        for ans, point in answers[1]:
            choices1 = Radiobutton(root, text=ans, variable=v, value=point, padx=100, justify='left')
            choices1.pack()


def point_plus_change():
    global x
    x += 1


butt_addpoint = Button(root, text='确定', font=('黑体', 10), command=point_plus_change)
butt_addpoint.pack()


root.mainloop()


点击确认按钮之后没有反应,如图所示

                               
登录/注册后可看大图

最佳答案
2020-4-1 20:13:24
from tkinter import *

x = 0

root = Tk()

answers = {0: [('草莓', 2), ('苹果', 3), ('西瓜', 5), ('菠萝', 10), ('橘子', 15)],
           1: [('郊外', 2), ('电影院', 3), ('公园', 5), ('商场', 10), ('酒吧', 15), ('练歌房', 20)]}

v = StringVar()
choices = []    # 保存 Radiobutton 的一个列表


for ans, point in answers[x]:
    choices1 = Radiobutton(root, text=ans, variable=v, value=point, padx=100, justify='left')
    choices1.pack()
    choices.append(choices1)


def point_plus_change():
    global x
    x += 1
    x %= 2    # 对 2 求余数
    if x <= 14:
        if x == 0:
            for (ans, point), choices1 in zip(answers[0], choices):
                choices1.config(text=ans, variable=v, value=point, padx=100, justify='left')
        if x == 1:
            for (ans, point), choices1 in zip(answers[1], choices):
                choices1.config(text=ans, variable=v, value=point, padx=100, justify='left')


butt_addpoint = Button(root, text='确定', font=('黑体', 10), command=point_plus_change)
butt_addpoint.pack()


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

使用道具 举报

发表于 2020-4-1 20:13:24 | 显示全部楼层    本楼为最佳答案   
from tkinter import *

x = 0

root = Tk()

answers = {0: [('草莓', 2), ('苹果', 3), ('西瓜', 5), ('菠萝', 10), ('橘子', 15)],
           1: [('郊外', 2), ('电影院', 3), ('公园', 5), ('商场', 10), ('酒吧', 15), ('练歌房', 20)]}

v = StringVar()
choices = []    # 保存 Radiobutton 的一个列表


for ans, point in answers[x]:
    choices1 = Radiobutton(root, text=ans, variable=v, value=point, padx=100, justify='left')
    choices1.pack()
    choices.append(choices1)


def point_plus_change():
    global x
    x += 1
    x %= 2    # 对 2 求余数
    if x <= 14:
        if x == 0:
            for (ans, point), choices1 in zip(answers[0], choices):
                choices1.config(text=ans, variable=v, value=point, padx=100, justify='left')
        if x == 1:
            for (ans, point), choices1 in zip(answers[1], choices):
                choices1.config(text=ans, variable=v, value=point, padx=100, justify='left')


butt_addpoint = Button(root, text='确定', font=('黑体', 10), command=point_plus_change)
butt_addpoint.pack()


root.mainloop()
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 1 反对 0

使用道具 举报

 楼主| 发表于 2020-4-1 20:19:22 | 显示全部楼层


大哥你是真的强  什么时候我也能像你一样就好了
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2020-4-1 20:50:59 | 显示全部楼层

大哥,answer[0]有5个值,answer[1]有6个值,answer[1]只显示了5个,没有完全显示出来,怎么办
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

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

本版积分规则

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

GMT+8, 2024-11-25 19:20

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

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