• 2022-06-07
    下列一段Python代码的运行结果是count = 2while count > 0: print('hello') count = count - 1 breakprint('over')
    A: hello hello over
    B: hello over hello over
    C: hello over
    D: hello hello over over