- Write a while loop in Python that sums the numbers from 0 to 100.
- Optional: Extend the script above to ask the user for a number and sum from 0 to that number.
- Write an infinite loop in Python.
- Write a for loop in Python that sums the numbers from 0 to 100.
- Write a for loop in Python that sums the numbers from 0 to 100 using the built-in range() function.
- Write a for loop in Python that displays the multiples of 3 between 1 and 100 using the built-in range() function.
- Write a for loop in Python that displays the numbers between 10 and 0 (inclusive) using the built-in range() function.
- Design a flowchart for a program that asks a user for input and guarantees that it's valid. Then, write Python code to do it.