Submodules
aproject/
app.py
mymodules/math.py
import mymodules.math
z = mymodules.math.add(2, 3)
print(z)
def add(x, y):
return x + y
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
aproject/
app.py
mymodules/math.py
import mymodules.math
z = mymodules.math.add(2, 3)
print(z)
def add(x, y):
return x + y