Beispiel #1
0
import myModule

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

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