# Starter ```python x = 5 while x <= 50: print(x) x = x + 5 ``` Modify the above code so it prints out the 6 times table up to 60 # Exercise Write while loops to output the following sequences of numbers 1. 0,1,2,3,4,5,6,7,8,9,10 2. 0,2,4,6,8,10,12,14,16 3. 1,2,3,4,5, … 97,98,99,100 4. 7,14,21, … 63,70,77 5. 20,18,16, … 4,2,0,-2 6. 2,5,8,11,14,17,20,23,26,29 7. 99,88,77,66,55,44,33,22,11,0 8. Numbers 1 to 1000. 9. Even numbers from 0 to 100. 10. Odd numbers from -50 to 50 11. All multiples of 3 up to 500. # Extension Can you write nested while loops (a while loop in a while loop) to print out all the times tables from 1 to 10?