Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

4 cars filled with passengers (5 passengers per car) meet in the park. Input the ages of the passengers. Calculate the sum of ages per each car, and print the index of the car with the smallest sum>Here is what I have but I am not sure how to print the rest

CARS = 4
PASSENGERS = 5
lst = [[0] * PASSENGERS for i in range (CARS)]
for i in range (len(lst)):
  for j in range (len(lst[i])):
     lst[i][j] = int(input("Enter a number: "))
sum = [0] * len(lst)
for i in range (len(lst)):
   total_cars = 0
for j in range (len(lst[i])):
   total_cars = total_cars + lst[i][j]
   sum[i] = total_cars
print("List " + str(lst))
print(sum)

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
4.1k views
Welcome To Ask or Share your Answers For Others

1 Answer

等待大神解答

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...