Create a program where using the for-loop you print out the following content: 1) A list of all values from 0 - 10 (in ascending order). 2) A list of all values from 10 - 0 (in descending order). 3) A list of all values from 0 - 250 (in ascending order, taking steps of 25 each).
Please note that this exercise was designed to make you familiar with the for-loop.. so use it!