I have a simple class, and every time I create an instance of that class, I want the class variable to increment how is should i do that with this code:
class Person:
person_count = 0
def __init__(self, username):
self.username = username
ashley = Person("Ash")
daphne = Person("Daph")
Person.person_count #I want this to be 2