Exemple #1
0
import myModule

myModule.helloworld()
Exemple #2
0
#!/usr/bin/env python3

import myModule
print(myModule.helloworld())
help(myModule.helloworld)
x = 3
print("myModule.fib({})== {}".format(x, myModule.fib((x))))
Exemple #3
0
import myModule  # this is our own module
myModule.helloworld()  # This calls C++ code
Exemple #4
0
def main():
    myModule.helloworld()