Answered

6.3 Code Practice: Question 1 Instructions 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. Expected Output 20 21 22 23 24 25 26 27 28 29 30

Answer :

Answer:  

for i in range (20,31):

     print (i, end=" ")

aksnkj

Answer:

for i in range(20, 31):

   print(i, end=' ')

Step-by-step explanation:

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=' ')

For more information:

https://brainly.com/question/14397376?referrer=searchResults