Description
Referring to Module 5: Odds and Ends under the section Naming Conventions, there is a lot of emphasis put on the distinction between different formatting conventions for class names. It states that CamelCase
should be used and then goes on to show the differences with the example of ShoppingList
and shoppingList
, implying that the latter is not CamelCase
.
In this scenario, the term CamelCase
is a poor choice since both styles qualify as CamelCase
. Personally, I've always used the terms camelCase
and PascalCase
to make the distinction. The PEP8 style-guide seems to use the term mixedCase
to refer to the former.
In any case, I feel that using the term CamelCase
to solely refer to CapWords
(and not mixedCase
) is definately not the way to go and will only lead to more confusion to the reader.