What is the output of the following statement with reason? (2)
for i in range(1,11):
if i%3 == 0:
break
else:
print(i)
Answers
Answered by
1
Answer:
Answer: a
Explanation: The function upper() does not modify a string in place, it returns a new string which isn’t being stored anywhere.
Similar questions