중첩함수

· AboutPython
[중첩함수] 함수 안에 또다른 함수가 있는 형태이다. 내부 함수를 밖에서 호출할 수 없다. def out_function(): print('out function is called') def in_function(): print('in function is called') in_function() in_function() ''' Traceback (most recent call last): File "c:\Users\Jupiter\Desktop\mygit\LearnInZeroBase\파이썬 중급\3_중첩함수.py", line 9, in in_function() NameError: name 'in_function' is not defined. Did you mean: 'out_function'? ''' 이..
scone
'중첩함수' 태그의 글 목록