question 7\nwrite a python while loop that counts up from 1 to 20, printing each number as it goes\nedit…

question 7\nwrite a python while loop that counts up from 1 to 20, printing each number as it goes\nedit format table\n12pt paragraph b i u a t²

question 7\nwrite a python while loop that counts up from 1 to 20, printing each number as it goes\nedit format table\n12pt paragraph b i u a t²

Answer

Explanation:

Step1: Initialize a variable

i = 1

Step2: Set up the while - loop condition

while i <= 20:

Step3: Print the number and increment the variable

    print(i)
    i += 1

Answer:

i = 1
while i <= 20:
    print(i)
    i += 1