Ask Question
15 July, 21:33

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

+4
Answers (1)
  1. 15 July, 22:00
    0
    for i in range (20,31):

    print (i, end=" ")
Know the Answer?
Not Sure About the Answer?
Get 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 there is no answer or all answers are wrong, use a search bar and try to find the answer among similar questions.
Search for Other Answers