1: Review
Answer Questions 1–7 in your Moodle writeup. You can use the the Online Python 3 tutor to help, but you should try to answer the questions on your own first.
2: Introduction to while loops
Enter the following Python code into the Online Python Tutor:
counter = 1 total = 0 while counter <= 5: total += counter counter += 1 print('Done')Use the tutor to step through this loop, then answer Questions 8–10 in Moodle.