Computer Science, asked by vinayjain13568, 4 months ago

Variable, Initial value, Final value
3. Write the output of the following program:
FOR 1=1 TO 100 STEP 10
PRINTI
PRINT ***
NEXT I​

Answers

Answered by parkarziya573
1

Answer:

# Example for loop

for i in [1, 2, 3, 4]:

print(i, end=", ") # prints: 1, 2, 3, 4,

Similar questions