Calculating Sum of Student's Scores

# Introduction In this lab, you need to create a class named `Student` with an attribute `scores`, initialize it with a list, and create a method `get_scores_sum()` to return the sum of the list items using the built-in `sum()` function, and then outside of the class, create a `scores` variable with a list, create an object of `Student` using that list, call the `get_scores_sum()` method and assign the return value to the `total` variable, and finally print the `total` value.

|60 : 00

Click the virtual machine below to start practicing