Computer Science, asked by rushilnandertg45, 5 months ago

Predict the output of the following code
for x in range (5,18,2):
print(x)​

Answers

Answered by allysia
0

Answer:

After correcting the indentations a bit:

\\\tt for \ x\ in\ range (5,18,2):\\\tt {\qquad print (x)}\\\\\tt \ [ out \ ]: \\\tt  57\\\tt9\\\tt11\\\tt13\\\tt15\\\tt17 \\\tt

Similar questions