Find the output of the following program:
for i in range(10):
if(i%2!=0):
print("Hello",i)
Answers
Answered by
0
Output:
Hello,1
Hello,3
Hello,5
Hello,7
Hello,9
Similar questions