Ask Question
13 January, 20:38

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

+3
Answers (1)
  1. 13 January, 23:16
    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 you're in doubt about the correctness of the answers or there's no answer, then try to use the smart search and find answers to the similar questions.
Search for Other Answers