Write output of following: for I in range(5): print(i) (1) ii) print ((9>1) or (9
Answers
Answered by
0
Answer:
Print i value from 0 to 4 and condition is true
Explanation:
for will print i values from range 0 to 4.
print will check the condition if the condition is true it will print true else false. In above case condition is true it prints true
Attachments:
Similar questions