Example #1
0
import a

print("b.py가 실행되었음")
a.hello()
Example #2
0
import a
import b

print ("hello from main.py")
print ("when whe import the whole module, we need to call it by module.function()")


print (a.hello())
print ("---"*13*2)
print ("notice the ASCII Logo outside the function ")
print ("---"*13*2)