Create a list Score that contains the GPA of a student in 3 semesters. Create 3 such students and add them in new list call Students with the name of the student with it as well. Take input from user. for example :
input:
list1 = ['ali','Mudassir','Hasssan']
list2 = [['3.4','3.5','3.5'],['3.2','3.5','3.6'],['3.4','3.7','3.1']]
output:
[['ali', ['3.3', '3.2', '3.6']],
['Mudassir', ['3.2', '3', '3.6']],
['Hassan', ['3.7', '3.2', '3.9']]]
any suggestion and help will be beneficial for me please give on comment. Thanks in advance