What is the output of the following code?
i = 1 while True: if i%7 == 0: break print(i, end=" ") i += 1
1 2 3 4 5 6
1 2 3 4 5 6 7
No output
Error
This question is part of this quiz :