Answer to Question #98071 in Python for Tobe

Question #98071
Write a for loop to print the numbers from 20 to 30, inclusive (this means it should include both the 20 and 30). The output should all be written out on the same line.

Sample Run
20 21 22 23 24 25 26 27 28 29 30
1
Expert's answer
2019-11-06T07:48:08-0500

There are several ways to do this, but in my opinion, the simplest way is to change the default value of the argument END ( such as end="\n") to a SPACE, like this:

for i in range(20, 31):
    print(i, end=' ')

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
New on Blog
APPROVED BY CLIENTS