Python code

1.Write a series of Python code that does the following: ( please write the following codes in python and execute it ) ( your_name = Sruthi)

(a) Defines a class object (MyCourse)

(b) Defines an array in this object init; set it with two values (your_name, my_start_score=0)

(c) Add three scores (80, 100, 95) to init and show results

(d) Calculate the average of all scores and show results in (MyCourse)

  • Show the code and results after processing and, add an appropriate comment for each line of code

2.Write a series of R code that does the following:

(a) Outputs: This is the mid-term exam for (class name) at UC

(b) Creates a S3 Class Object with components - your name, today's date, and the score you got on Quiz 1(APA)

(c) Creates a list that shows scores you received on three assignments thus far ( Quiz 1, Assignment 1, and Quiz 2)

(d) Calculates both the sum and average of these three scores

  • Show the code and results after processing and, add an appropriate comment for each line o