示例#1
0
import myModule

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

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