All members are camel case, right? Why True/False but not true/false, which is more relaxed?
相关问题
- how to define constructor for Python's new Nam
- streaming md5sum of contents of a large remote tar
- How to get the background from multiple images by
- Evil ctypes hack in python
- Correctly parse PDF paragraphs with Python
All of python's built-in constants are capitalized or [upper] CamelCase:
From Pep 285:
This, as Andrew points out, is probably because all (most)? built-in constants are capitalized.
Here's a possible explaination: