Exemplo n.º 1
0
'''
import greet
greet.hello()
greet.bye()
print(greet.x)
#import greet as g #for shortcut
#g.hello()
'''
from greet import hello,party
#from greet import * #import all methods and variables
hello()
party()
Exemplo n.º 2
0
import greet

greet.hello('홍채리')
greet.niceMeet('장수연')







Exemplo n.º 3
0
import greet  #greetファイルをインポート
greet.hello('kaito')  #greetファイルのhello関数の引数に値を入れて実行
from greet import hello

hello('universe')
print('Bye now...')
Exemplo n.º 5
0
from greet import hello, niceMeet

hello('홍채리')
niceMeet('장수연')







Exemplo n.º 6
0
import greet

greet.hello("CG Lab")
greet.hello("Eunjun Jang")
# add here. hello("your name")
greet.hello("Sang Ho")
greet.hello("Kyung Min Na")
            
print("Github Study!")
Exemplo n.º 7
0
from greet import hello
import greet

greet.hello("Alice")  # Hello Alice I'm Bob
print(greet.name)  # Bob

hello("Alice")  # Hello Alice I'm Bob
Exemplo n.º 8
0
import greet

greet.hello("CG Lab")
greet.clhello("Eunjun Jang")
# add here. hello("your name")

print("Github Study!")