"파이썬 자유변수"의 두 판 사이의 차이

2번째 줄: 2번째 줄:
;Python free variable
;Python free variable
;파이썬 프리변수, 파이썬 자유변수
;파이썬 프리변수, 파이썬 자유변수
* 어떤 코드블록 안에서 사용되지만, 글로벌 변수도 아니고 그 블록 내에 정의하지도 않은 변수<ref>Used, but neither global nor bound https://stackoverflow.com/questions/12919278/how-to-define-free-variable-in-python</ref>
* 어떤 코드블록 안에서 사용되지만, 글로벌 변수도 아니고 그 블록 내에 정의하지도 않은 변수<ref>Used, but neither global nor bound</ref>


<source lang='python'>
<source lang='python'>
20번째 줄: 20번째 줄:
* [[파이썬 locals()]]
* [[파이썬 locals()]]
* [[자유 변수]]
* [[자유 변수]]
==참고==
* https://stackoverflow.com/questions/12919278/how-to-define-free-variable-in-python


[[분류: python]]
[[분류: python]]

2018년 5월 14일 (월) 15:00 판

1 개요

Python free variable
파이썬 프리변수, 파이썬 자유변수
  • 어떤 코드블록 안에서 사용되지만, 글로벌 변수도 아니고 그 블록 내에 정의하지도 않은 변수[1]
def bar():
    x = 1
    def foo():
        print(x)
        print(locals())
    foo()

bar()
→ foo() 함수 안에서의 x가 프리변수임.
→ bar() 함수 입장에서는 x를 그 블록 내에서 정의하였으므로(bound) 프리변수가 아님.

2 같이 보기

3 참고

  1. Used, but neither global nor bound
문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}