Chad32 Chad32 29-12-2023 Computers and Technology contestada What will be the output of the following Python program?i = 0while i < 5: print(i) i += 1 if i == 3: breakelse: print(0)a. errorb. 0 1 2 0c. 0 1 2d. none of the mentioned