You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For the following example in 1.7.2 it is stated that the Done message is never printed. I would argue and I have tried out that "Done" is printed infinetly as it part of the loop due to its indentation.
For the following example in 1.7.2 it is stated that the Done message is never printed. I would argue and I have tried out that "Done" is printed infinetly as it part of the loop due to its indentation.
x = 0
while x != 10:
x = x + 3
print('Done')