2

Maybe I have the wrong impression, but wouldn't the parent class of a class object be a class? If so, why didn't the authors of Python follow good style convention and capitalize the object class to Object to denote it as a class object? Is it a class at all?

Community
  • 1
  • 1
yurisich
  • 6,991
  • 7
  • 42
  • 63

1 Answers1

9

It follows the convention of built-in types (str, int, float, complex, file, type, etc.) not having the initial letter capitalized.

Ignacio Vazquez-Abrams
  • 776,304
  • 153
  • 1,341
  • 1,358