Ответ:
a=[1,2,3,4,5,8,13,21,34,55,89]
for chislo in a:
if chislo % 2 == 0:
print(chislo)
Объяснение:
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Ответ:
a=[1,2,3,4,5,8,13,21,34,55,89]
for chislo in a:
if chislo % 2 == 0:
print(chislo)
Объяснение: