Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Internal usage

import calc
print(calc.add(7, 8))  # 15

from calc import add
print(add(3, 5))       # 8
cd examples/package
python 1/mymath/internal_use.py