I see that naming conventions are such that classes usually get named
CamelCase. So why are the built-in types named all lowercase (like
list, dict, set, bool, etc.)?
Because most of them originally were
types and factory functions, not
classes - and a naming convention is
not a strong reason to make backwards
incompatible changes. A different
example: the new builtin type set is
based on (altough not exactly equal
to) the Set class from the sets module
In python only the 3 keywords True ,False and None are started with capital letters. I think This is to differentiate these 3 keywords from others. These 3 keywords can be used as literals or values where as other keywords not.
For example