Question: 5.4.1: While loop: Print 1 to N. Write a while loop that prints from 1 to user_num, increasing by 1 each time. Sample output with
5.4.1: While loop: Print 1 to N.
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

CHALLENGE ACTIVITY 5.4.1: While loop: Print 1 to N. Write a while loop that prints from 1 to user_num, increasing by 1 each time, Sample output with input: 4 3 user_num = int(input) # Assume positive 4 # prompt the user to input an integer 5 user_num - int(input("Enter a positive integer: ")) 7 # initialize the value of i. 8 i = 1 10 #Start the while loop 11 while i
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
