( Python) Write a class that stores the name and phone number of a person you know. The class should include an initiali
Posted: Sat May 14, 2022 7:49 pm
( Python) Write a class that stores the name and phone number of
a person you know.
The class should include an initializer method that accepts the
name and phone number as arguments and initializes private
variables that store the information.
Include in the public interface an accessor and mutator for the
name.
Include in the public interface an accessor and mutator for the
phone number.
Include a __str__ method for returning your choice of a string
representation of the object.
a person you know.
The class should include an initializer method that accepts the
name and phone number as arguments and initializes private
variables that store the information.
Include in the public interface an accessor and mutator for the
name.
Include in the public interface an accessor and mutator for the
phone number.
Include a __str__ method for returning your choice of a string
representation of the object.