MarissaSanchez6884 MarissaSanchez6884 28-12-2023 Computers and Technology contestada What does the following Python program print out?tot = 0 for i in [5, 4, 3, 2, 1] : tot = tot + 1print(tot)