第13874题 单选题
运行给定的Python类T的程序,最终输出的结果是?
class T():
    def __init__(self):
         self.a=1
    def t1(self,b):
         self.a=b+b
c=T()
c.a=c.a+c.a
c.t1(5)
print(c.a)
{{ option.label }}
子题{{ index + 1 }} {{ child.type_label }}
{{ option.label }}
✓ 正确 ◐ 部分正确 ✗ 错误
程序运行统计
暂无判题统计
提交{{ questionInfo.stats ? questionInfo.stats.submit_count : 0 }}次 正确率{{ statsAccuracy }}%
答案解析