kcoviello0351 kcoviello0351 10-12-2020 Computers and Technology contestada Read the following code: n = 0 while(n <= 5): print(n) n = n + 1 What output would be produced for the given values of n? 0 1 2 3 4 0 1 2 3 4 5 1 2 3 4 1 2 3 4 5