1) Write a Python program that accepts a numeric value from the user and prints the number starting from 0 up to the user's value.
2) Define a Python list for the days of the week, and then use a loop (while or for) to print that list.
3) When does python limit access to global variables/objects from within a scope?
- When there is the presence of a newly created local variable with the same name as a global variable.
- When there is the presence of a newly created local variable with a different name than the global variable.
- When there are no new variables.
- When there is the presence of any newly created variable.