Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

What am I missing here? 4.4.1:While loop: Print 1 to N. Use a while loop that prints from 1 to user_num, increasing by 1 each

What am I missing here?

4.4.1:While loop: Print 1 to N.

Use a while loop that prints from 1 to user_num, increasing by 1 each time.

Sample output with input: 4

1 2 3 4 

my code is :

i = 1

user_num = int(input()) # Assume positive

while i == user_num:

i =+ 4

print(i,' ')

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Introduction to Wireless and Mobile Systems

Authors: Dharma P. Agrawal, Qing An Zeng

4th edition

1305087135, 978-1305087132, 9781305259621, 1305259629, 9781305537910 , 978-130508713

More Books

Students also viewed these Programming questions

Question

Types of physical Maps?

Answered: 1 week ago

Question

Explain Intermediate term financing in detail.

Answered: 1 week ago

Question

Types of cultural maps ?

Answered: 1 week ago

Question

Discuss the various types of leasing.

Answered: 1 week ago