✅ Перевірена відповідь на це питання доступна нижче. Наші рішення, перевірені спільнотою, допомагають краще зрозуміти матеріал.
Which statement corrects the off-by-one error in the following
code:
# This code prints the first 10 numbers starting with zeroi = 0while i <= 10 : print(i) i = i + 1