Ask Question
20 February, 16:46

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

+1
Answers (1)
  1. 20 February, 17:10
    0
    for i in range (20,31):

    print (i, end=" ")
Know the Answer?
Not Sure About the Answer?
Find an answer to your question 👍 “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 ...” in 📗 Mathematics if the answers seem to be not correct or there’s no answer. Try a smart search to find answers to similar questions.
Search for Other Answers