(PYTHON)
Prompt the user to enter a single-digit number(num) and print the output like this:
If the user enters 4, your program prints:
1234
4123
3412
2341
if the user enters 6, your program prints:
123456
612345
561234
456123
345612
234561
Other requirements:
1) print num rows of num numbers
2) first row counts from 1 to num
3) subsequent rows are from the previous rows shifted RIGHT(wraparound)
(PYTHON) Prompt the user to enter a single-digit number(num) and print the output like this: If...