What will be the output of the following Python code? s = {1, 2, 3, 4} for i in range(5): if i in s: continue else: print(i) a) 0 b) 4 c) 0, 4 d) No output
6
0
7
1K
0