A.variable is NoneB.variable ==NoneC.variable ===NoneD.A和B都對
A.@decorator def func():passB.def func()decorator:passC.func =decorator(func)D.A和C都對
A.def func():yield xB.function*func(){yield x;}C.generator func(){yield x;}D.func =generator(x for x in range(10))