Answer to Question #230467 in Python for Abc

Question #230467
Give an array of integers representing measurements in inches, write a program to calculate the total of measurement in feet ignore the measurement those who are less than a feet (e.g10)
1
Expert's answer
2021-08-29T00:57:52-0400
def findTotalFeet(n,numbers):


    total = 0


    for i in numbers:


        total += i//12


    return total


n = int(input())


numbers = list(map(int, input().split()))


print(findTotalFeet(n,numbers))

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