# BAD, do not start class or interface name with lowercase letter class badName: def hello(self): print("hello") # Good, class name starts with capital letter class GoodName: def hello(self): print("hello")