In Python, these are the same — attributes of the class itself.
1class User:2 count = 0 # Class/static attribute3 4 def __init__(self, name):5 User.count += 16 self.name = name