Find the output of following (5) a. for x in range(5): print(x) b. for x in range(3,6): print(x) c. for x in range(3,8,2): print(x) d. count = 0 while count < 5: print(count) count = count + 1 e. for x in “Informatics Practices” : print(x)
Answers
Answered by
0
Answer:
answer is 3,6 hope it helps you.
Answered by
0
Answer:
answer is 3,6 hope it helps you.
Similar questions