What will be the output of the following Python code?
for i in range(10):
if i == 5:
break
else:
print(i)
else:
print("Here")1.0 1 2 3 4 Here
2.0 1 2 3 4 5 Here
3.0 1 2 3 4
4.1 2 3 4 5
Posted Date:-2021-12-30 07:22:47