-
f함수내 cnt변수를 만들어 값을 증가 시키는 예제
>>> def f(): ... if(hasattr(f, 'cnt')): ... f.cnt+=1 ... else: ... f.cnt = 0 ... >>> f.cnt Traceback (most recent call last): File "<stdin>", line 1, in <module> AttributeError: 'function' object has no attribute 'cnt' >>> f() >>> f() >>> f.cnt 1
'Python' 카테고리의 다른 글
Python - sum() 함수 (0) 2020.09.05 Python - copy, deepcopy (0) 2020.09.04 Python - Colab 코랩 (0) 2020.09.04 Python - lambda, 람다 함수식 (0) 2020.09.04 Python - 함수 내에서 global변수 (0) 2020.09.04 Python - 다차원 배열 초기화 (0) 2020.09.04 Python - 최대값 최소값 얻기 (0) 2020.09.04 Python pip install 명령어 옵션 (0) 2020.08.18