You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Write a Python class called 'Person' that has the following attributes:
- name (string)
- age (integer)
- gender (string)
The class should have a constructor that initializes these attributes, as well as methods to get and set each attribute. Write tests to verify that the class works as expected.