Choose a random number
def random_number(): return 4
A foolish consistency is the hobgoblin of little minds
AlliedCrowds follows The Pocoo Style Guide, which follows PEP 8. The below amends and overrides each.
Use double quotes " around strings that are used for interpolation or that are natural language messages, and single quotes ' for small symbol-like strings.
Example:
language = {
'english' : "Hey, what's up?"
'british' : "Hey, are you alright?"
}
When dealing with a natural language string with quotes, use single quotes.
Docstrings on everything à la PEP 257