Answer to Question #308199 in Python for Sneha

Question #308199

Math Quiz

Write a program to print the following,


Sample Input 1

1 3 4 5 6

5

3 5

Sample Output1

12


1
Expert's answer
2022-03-10T07:15:34-0500
s = (str(input("Enter numbers separated by space in ascending order: "))).split(" ")
Nums = []
for r in range(0,len(s)):
    Nums.append(int(s[r]))
x = int(input("Enter from list, lower number a: "))
y = int(input("Enter from list, upper number b: "))
Sum = 0
i1=0
i2=0
for r in range(0,len(Nums)):
    if(Nums[r]==x): i1=r
    if(Nums[r]==y): i2=r


for r in range(i1,i2+1):
    Sum = Sum + Nums[r]
print("Output = ",Sum)



Python Output:

Enter numbers separated by space in ascending order: 1 3 4 5 6

Enter from list, lower number a: 3

Enter from list, upper number b: 5

Output = 12

>>> 



Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
New on Blog
APPROVED BY CLIENTS