def cModule(n):
    return roots.sumOfRoots(n)
Example #2
0
def cModule(n):
    return roots.sumOfRoots(n)
Example #3
0
# no need to use the _ in the final version
import _roots as roots

result = roots.sumOfRoots(5)
print result
Example #4
0
def sumOfRoots(n):
    return _roots.sumOfRoots(n)
Example #5
0
def sumOfRoots(*args):
    return _roots.sumOfRoots(*args)
# no need to use the _ in the final version (??? doesn't work)
import _roots as roots

result = roots.sumOfRoots(5)
print(result)