Home /
Expert Answers /
Computer Science /
in-python-please-1-write-an-interactive-application-in-python-that-uses-at-least-2-parallel-lists-f-pa374
(Solved): in python please 1. Write an interactive application in Python that uses at least 2 parallel lists f ...
in python please
1. Write an interactive application in Python that uses at least 2 parallel lists for storing related information in a meaningful manner. Some examples may include: student name and gpa, pet name and age, stock name and price, etc. 2. The program must use loops to process the lists to calculate other information. For example, the student with the highest/average gpa, the average pet age, the highest/lowest stock price, etc.
Code: names = [] #creates an empty list to store the names of the students gpa = [] #creates an empty list to store the gpas N = int(input("Enter no of Students: