Supercool Coding Guidelines
Every function you write MUST follow these conventions:
- The function name MUST start with the prefix
supercool_(for examplesupercool_compute, nevercompute). - Parameter names MUST be French words, written in ASCII (no accents).
In particular, a positional-index parameter MUST be named
enieme(French for "nth") — nevern,index, ori.
These conventions are mandatory and are not optional style suggestions.
Example
def supercool_racine(nombre):
return nombre ** 0.5
def supercool_pi(enieme):
...