Computer >> 컴퓨터 >  >> 프로그램 작성 >> Python

함수에서 지역 변수의 수를 찾는 파이썬 프로그램


이 기사에서는 아래 주어진 문제 설명에 대한 솔루션에 대해 알아볼 것입니다.

문제 설명 − 우리는 함수를 받았고, 함수에 있는 지역 변수의 수를 표시해야 합니다.

이제 아래 구현에서 솔루션을 관찰해 보겠습니다 -

예시

# checking locals
def scope():
   a = 25.5
   b = 5
   str_ = 'Tutorialspoint'
# main
print("Number of local varibales available:",
scope.__code__.co_nlocals)

출력

Number of local varibales available: 3

예시

# checking locals
def empty():
   pass
def scope():
   a, b, c = 9, 23.4, True
   str = 'Tutiorialspoint'
# main
print("Number of local varibales
available:",empty.__code__.co_nlocals)
print("Number of local varibales
available:",scope.__code__.co_nlocals)

출력

Number of local varibales available: 0
Number of local varibales available: 4

결론

이 기사에서 우리는 파이썬 프로그램을 만들어 함수에서 여러 지역 변수를 찾는 방법을 배웠습니다.