以下代码段的执行结果是( )。Class St: def __init__(o,a,b): o._a=a o.__b=b def setb(o,b): o.__b=b def getb(o): return o.__bS1=St(0,1)Print(s1.__b) A、0B、1C、随机数D、语句出错 发布时间:2024-12-07 20:47:52