Answers for "python enter ten numbers and get the sum of all odd numbers"

0

python sum of 10 numbers from user input

a_list = []
print("Please enter 10 numbers with or without decimalsn")

for num in range(10):
    list_num = float(input("Enter a number:"))
    a_list.append(list_num)
print(sum(a_list))
Posted by: Guest on August-21-2020
0

how to sum only the odd values in python

>>> lst = [0, 1, 2, 3, 4, 5]>>> sum(n for n in lst if n % 2 != 0)9
Posted by: Guest on March-07-2020

Code answers related to "python enter ten numbers and get the sum of all odd numbers"

Python Answers by Framework

Browse Popular Code Answers by Language