vote up 5 vote down star
3

All members are camel case, right? Why True/False but not true/false, which is more relaxed?

flag

56% accept rate
Also I mean camel case as in myVar, and pascal case as in MyVar. – Joan Venge Feb 6 at 18:24
usually different types use different casing. – Javier Feb 6 at 19:28

8 Answers

vote up 17 vote down check

Form Pep 285:

Should the constants be called 'True' and 'False' (similar to None) or 'true' and 'false' (as in C++, Java and C99)?

=> True and False.

Most reviewers agree that consistency within Python is more important than consistency with other languages.

This, as Andrew points out, is probably because all (most)? built-in constants are capitalized.

link|flag
Thanks James, but isn't the default casing is camel casing in python? – Joan Venge Feb 6 at 18:21
It is for classes. There are different rules for other things. Scroll to "Naming Conventions": python.org/dev/peps/pep-0008 – Baltimark Feb 6 at 19:49
vote up 10 vote down

It's the way Guido indented it!

link|flag
You mean intended? :) – Joan Venge Feb 6 at 18:30
Must have been invented – Johan Dahlin Feb 6 at 18:33
I'd change it, then again I find that typo too amusing:) – Torsten Marek Feb 6 at 19:05
1  
It's a standing in-joke, not a typo. – chaos Feb 6 at 19:17
This should go to stackoverflow.com/questions/234075/… – Abgan Feb 7 at 18:28
vote up 7 vote down

All of python's built-in constants are capitalized or [upper] CamelCase:

link|flag
Constants, yes, but all other members are camelCased, right? – Joan Venge Feb 6 at 18:24
@Andrew: Don't you mean PascalCased rather than camelCased ? – Kev Feb 6 at 19:00
@Kev, yes, but technically, I think "upper CamelCase" is the same as PascalCase. – Andrew Jaffe Feb 6 at 19:57
vote up 2 vote down

Here's a possible explaination:

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

link|flag
vote up 0 vote down
no_a_member_can_be_anything_the_language_allows
link|flag
Yes, but I mean the guidelines. Does it make sense to use pascal casing if the default members are camel cased? – Joan Venge Feb 6 at 18:20
vote up 0 vote down

True and False are capitalized in Haskell, the other language which uses indentation as syntax.

link|flag
vote up 0 vote down

I'd say that they're called True and False because they're singletons.

link|flag
vote up -1 vote down

Cozz python is inconsistent.

link|flag
You mean like with None and Ellipsis, the other built-in named literals? – Ignacio Vazquez-Abrams Apr 5 at 4:29
Actually more for things like len, str, bool, etc, but having to capitalise these constant, just makes it slower to type. – Natasha Apr 5 at 5:04

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.