执行以下代码,依次输出哪些数字?for i in range(2): print(i)for i in range(4,6): print(i) A、2,4,6; B、0,1,2,4,5,6; C、0,1,4,5; D、1,2,4,5,6 发布时间:2025-05-20 02:43:19