xxxxxxxxxx
from calculation import add
print(add(1,2))
POWERED BY DATACAMP WORKSPACE
COPY CODE
xxxxxxxxxx
from calculation import *
print(add(1,2))
print(sub(3,2))
POWERED BY DATACAMP WORKSPACE
COPY CODE
xxxxxxxxxx
import calculation as cal
print(cal.add(1,2))
POWERED BY DATACAMP WORKSPACE
COPY CODE