Computer Science, asked by Trianguz, 5 months ago

Convert the following for loop into while loop:

for d in range (10,20,5):

print (d)​

Answers

Answered by jai696
2

\huge\red{\mid{\fbox{\tt{Using\: Python\: 3}}\mid}}

counter = 10

while counter != 20:

print(counter)

counter += 5

\large\mathsf\color{lightgreen}useful?\: \color{white}\longrightarrow\: \color{orange}brainliest!

Answered by Japji21
0

Answer:

counter = 10

while counter != 20:

print(counter)

counter += 5

Similar questions