1. What is the difference between a loop `for` and a loop `wheele`? |
for i in range(3):
print(i) |
|
|
|
|
count = 0 while count < 3: print(count) count += 1 |
|
1. What is the difference between a loop `for` and a loop `wheele`? |
for i in range(3):
print(i) |
|
|
|
|
count = 0 while count < 3: print(count) count += 1 |
|