Question: Write a while loop that prints from 1 to user_num, increasing by 1 each time. Sample output with input: 4 1 2 3 4 i
Write a while loop that prints from 1 to user_num, increasing by 1 each time. Sample output with input: 4
1 2 3 4
i = 1
user_num = int(input()) # Assume positive
''' Your solution goes here '''
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
