Skip to content

Latest commit

 

History

History
6 lines (5 loc) · 233 Bytes

exercise1.md

File metadata and controls

6 lines (5 loc) · 233 Bytes

Loops Exercise 1

  1. Create a list containing the values 1-49.
  2. Loop over this list, printing each value.
  3. Use continue to skip over 13 (not print it).
  4. Break when you hit 39 (stop printing after this and exit the loop).