Final answer:
To print numbers from 'usernum' down to 1 in Python, you can use a 'for' loop and the 'print' statement. The 'range' function is used to generate the sequence of numbers, and a newline is printed after each number.
Step-by-step explanation:
To print numbers from 'usernum' down to 1, you can use a loop in Python. Here is an example of how to do it:
usernum = int(input('Enter a number: '))
for i in range(usernum, 0, -1):
print(i)
print() # print a newline after each number
In this code, the 'for' loop starts at 'usernum' and goes down to 1. The 'range' function is used to generate the sequence of numbers. Each number is printed using the 'print' statement, and a newline is printed after each number using another 'print' statement.