def Total(Number=10):
Sum=0
for C in range(1,Number+1):
if C%2==0:
continue
Sum+=C
return Sum
print(Total(4)
print(Total(7)
print(Total())
Answers
Answered by
0
Answer:
578 is the correct answer
Similar questions
Computer Science,
5 months ago
English,
5 months ago
World Languages,
5 months ago
English,
10 months ago
Sociology,
10 months ago
Math,
1 year ago
Geography,
1 year ago