Leveraging CPython Built-ins for Better Performance
Before we begin, this article assumes you are using CPython, the default Python implementation.
You can verify this by running:
import sys
print(sys.implementation.name)
Typical outputs:
cpython → CPython
pypy → PyPy
others → alternative implemen...
huanan.hashnode.dev5 min read