Question: in python Vrite the definition of a class Player containing: - A constructor that - initializes an instance variable name of type string, to the
Vrite the definition of a class Player containing: - A constructor that - initializes an instance variable name of type string, to the empty String. - initializes an instance variable score of type int, to zero. - A method called set_name that has one parameter, whose value it assig ns to the instance variable name. - A method called set_score that has one parameter, whose value it assigns to the instance variable score. - A method called get_name that has no parameters and that returns the value of the instance variable name. - A method called get_score that has no parameters and that returns the value of the instance variable score
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
