✅ Перевірена відповідь на це питання доступна нижче. Наші рішення, перевірені спільнотою, допомагають краще зрозуміти матеріал.
Match each chunk of code with the correct output
#chunk 1
i = 1while (i < 5): print(i,end=' ') i = i + 1
#chunk 2
i = 0while (i <= 5): print(i,end=' ') i = i + 1
#chunk 3
i = 0while (i <= 5): i = i + 1 print(i,end=' ')
#chunk 4
i = 0while (i < 5): i = i + 1 print(i,end=' ')