第15458题 单选题
给定Python Tkinter加减乘除单选框代码,运行后得到的界面是哪一项?
import tkinter
from tkinter import *
root = Tk()
v = IntVar()
calcs = [ ('+', 1),
('-', 2),
('*', 3),
('/', 4),
]
for calc, num in calcs:
    # 设置单选框,用来显示运算符
    Radiobutton(text = calc,variable =v,value=num).grid(row=num-1, column=1)
root.mainloop()

运行后的界面是?

{{ option.label }}
子题{{ index + 1 }} {{ child.type_label }}
{{ option.label }}
✓ 正确 ◐ 部分正确 ✗ 错误
程序运行统计
暂无判题统计
提交{{ questionInfo.stats ? questionInfo.stats.submit_count : 0 }}次 正确率{{ statsAccuracy }}%
答案解析