Identified Items in class file and test1.py. ************************* * Pet Class * ************************* Class Name: Pet Instance Variables: name animal_type birth_year is_vaccinated Instance Methods: __init__ __str__ vaccinate Public Members: name animal_type is_vaccinated vaccinate Private Members: __init__ __str__ Dunder Methods: __init__ __str__ Constructor: Pet Local Variables: p Standalone Methods: Person str print Parameters: self the_name the_animal_type the_birth_year Arguments: "Molly" "Dog" 2015 p p.vaccinated ************************* * BankAccount Class * ************************* Class Name: BankAccount Instance Variables: acct_id name phone _balance Instance Methods: __init__ __str__ check_balance deposit withdraw Public Members: acct_id name phone deposit withdraw Private Members: __init__ __str__ _balance Dunder Methods: __init__ __str__ Constructor: BankAccount Local Variable: acct Standalone Methods: print Parameters: self the_acct_it the_name the_phone the_amount Arguments: 23456 "Collins" "356/573-3789" acct 2000.0 1500.0 1000.0 ************************* * Card Class * ************************* Class Name: Card Instance Variables: rank suit Instance Methods: __init__ __str__ color Public Members: rank suit color Private Members: __init__ __str__ Dunder Methods: __init__ __str__ Constructor: Card Local Variables: dict c1 c2 Standalone Methods: Card print Parameters: self the_rank the_suit Arguments: 8 "D" 12 "S" c2.rank c2.suit c2.color( ) c2