Question: python code You may use the np.multiply(), np.add(), or any related universal functions to solve this question. Write a Python program that does the following:
You may use the np.multiply(), np.add(), or any related universal functions to solve this question. Write a Python program that does the following: 1. Create a Python class called Student with the following attributes: - name (a string representing the student's name) - scores (a NumPy array representing the student's test scores) 2. Define a constructor for the Student class that initializes the name and scores attributes when a new Student object is created. 3. Implement a method called calculate_average within the Student class that calculates and returns the average test score for the student using NumPy. 4. Create three instances of the Student class, each representing a different student with a name and a set of test scores. 5. Calculate and print the average test score for each student using the calculate_average method
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
