What will be displayed when the following code is executed?
 &

Loading

Choose the correct option.

What will be displayed when the following code is executed?
    number = 6
    while number > 0:
        number -= 3
        print(number, end = )

A. 36591
B. 44626
C. 3 0
D. 3 0 -3

Leave a Comment