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
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
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