Python
Створіть діапазон чисел від 12 до 28 із кроком 2. Перетворіть діапазон у масив. Обчисліть суму значень його елементів.
a=12
L=[]
S=0
while a<=28:
S=S+a
L.append(a)
a=a+2
print(L)
print(S)
Please enter comments
Please enter your name.
Please enter the correct email address.
You must agree before submitting.

Answers & Comments


Copyright © 2024 SCHOLAR.TIPS - All rights reserved.