Computer Science, asked by 123451224, 4 months ago

1. Predict the output of the following:
a) For i in range (3, 10, 1)​

Answers

Answered by siddharthisrocking
1

Answer:

3,4,5,6,7,8,9

Explanation:

the number will start from 3 as that is the start value, will end at 10 (so just before 10 ie. 9) and will iterate 1 step , if it was 2 at the end then it would be 3,5,7,9 ie. skipping two numbers.. HOPE THIS HELPS

Similar questions