Please read Carefully You are only required to write modify function Consider the following comma separated sample stude
Posted: Mon Jun 06, 2022 2:16 pm
Please read Carefully You are only required to write modify function Consider the following comma separated sample students file format (id,name,cgpa,dob, gender). Assume the file will always be called students.txt in your source code's file path. 1234, John Doe 1.12 22-01-1985.M 6221, Jane White. 2.12.12-02-1980.F Jennings,1.93,16-03-1990,M 6235, Kim Blue,1.85,15-02-2001,F 9821, Tom 1235, Bart Simpson 2.01.19-05-1989.M 3451, Alice Wonderland, 2.37,25-03-1990,F Write a complete Python program with a function called modify (stdid, field, new_value) which will modify the requested field to the provided new value of the given student and Modify Tom Jennings capa to 2.12 in your main program.