Python Programming Enter 4 Digits Project
Specification: Write a program that asks the user to enter a number that contains 4 digits, i.e. in the range [1000-9999]. Your program MUST take it as a number(integer). Print each digit on a separate line. (Use the tipper program from the slides as a guide),
Output should like:
Enter a number [1000-9999]: 4098
4
0
9
8