Beispiel #1
0
#!/usr/bin/python

from test.example import sayHello

sayHello()
Beispiel #2
0
#!/usr/bin/python

import test.example as tmp

tmp.sayHello()
Beispiel #3
0
#!/usr/bin/python

from test import example

example.sayHello()