Saved Bookmarks
| 1. |
How do you start writing a while loop in python |
|
Answer» Answer: Python While Loops ❮ PREVIOUS Next ❯ Print i as LONG as i is LESS than 6: i = 1. while i < 6: print(i) i += 1. ... Exit the loop when i is 3: i = 1. while i < 6: print(i) if i == 3: ... Continue to the next iteration if i is 3: i = 0. while i < 6: i += 1. ... Print a message once the CONDITION is false: i = 1. while i < 6: print(i) ... ❮ Previous Next ❯ Explanation: please mark as Brainliest I will give 10 thanks |
|