Python quirks
# Modulo
Modulo and integer division works differently from C! In C it’s:
|
|
But in Python:
|
|
Aaand for Python’s Decimal
it’s different. So yeah, more ways to shoot yourself in the foot.
# Tuples
This is not a tuple:
|
|
This is a tuple:
|
|
# Call stack limit
By default, call stack is limited to 1000 frames. Weird, but OK.