Ответ:
#Составляем список чисел
result = range(0, 101)
#Выводим на экран
print(result)
def gukan(count): while count!=100: print(count) count=count+1; gukan(0)
Copyright © 2025 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Ответ:
#Составляем список чисел
result = range(0, 101)
#Выводим на экран
print(result)
Ответ:
def gukan(count): while count!=100: print(count) count=count+1; gukan(0)