Minnesota State University, Mankato Lab 2 Total Lab Points: 150 points Full Name: 1. Develop a python script capable of managing a soccer team system. The system should ask the user for a file name...

Develop your own grading system. Create a function that asks the user for their scores in a
class and then return back a calculated percentage and grade


Minnesota State University, Mankato Lab 2 Total Lab Points: 150 points Full Name: 1. Develop a python script capable of managing a soccer team system. The system should ask the user for a file name that contains the data on the players. Once the file is loaded you should store them in a dictionary and make the name of every player a key. Allow the user to make changes on the amount of goals, minutes played and age. After the user is done doing all the changes they wanted to generate a final report with the updated data called updated soccerteam.txt 2. Develop a python script capable of opening a file and giving the user the option to make changes to specific lines. After the changes are made generate a new file. 3. Write a function subSet(L1, L2) that takes two lists L1 and L2 as input, and checks if the elements of one list are included in the other, or vice-versa. If the lists have the same elements in some order, ignoring duplicates, they would be considered identical. The function returns one of three results, L1 is a subset of L2, L2 is a subset of L1 or L1 is equal to L2. Notice lists may contain duplicates, but only one copy of the element needs to be checked. For example if L1 = [1, 4, 9, 16, 9, 7, 4, 9, 11] and L2 = [11, 11, 7, 9, 16, 4, 1], the function subSet(L1, L2) would return L1 is equal to L2. If instead L1 = [1,4,9,16,9,7,4,9,11] and L2 = [11, 11, 16, 4, 1], then subSet(L1, L2) would return L2 is a subset of L1. HINT: there is a fourth option
Mar 31, 2022
SOLUTION.PDF

Get Answer To This Question

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here