Ответ:
lst = [i for i in range(200, 301) if not i % 4]
print(*lst)
Объяснение:
list corehension - highload.today/comprehensions-python/
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Ответ:
lst = [i for i in range(200, 301) if not i % 4]
print(*lst)
Объяснение:
list corehension - highload.today/comprehensions-python/