2013-11-26 1 views

답변

1

파이썬은 두 번째 함수 정의가 첫 번째를 재정의합니다.

드롭은 파일에서이 코드는 test.py

# test.py 
def my_func(): 
    print "i will never get called" 

def my_func(): 
    print "awesome" 

my_func() 

라고하며

$ python test.py 
awesome 

오류가, 같은 객체에 대한 방법 적용 실행합니다.