함수의 인수 및 매개변수
그러나 기능과 관련하여:
매개변수는 함수 정의에서 괄호 안에 나열된 변수입니다.
인수는 함수가 호출될 때 함수로 전송되는 값입니다.
파이썬에서 다양한 유형의 인수로 함수를 정의하는 것이 가능하다는 것이 밝혀졌습니다.
그리고 결합할 수 있는 세 가지 유형의 인수/매개변수가 있습니다.
1) 기본 인수 값
산출:
You have 120 minutes!
Let's watch a action type web series
You have 150 minutes!
Let's watch a thriller type web series
You have 200 minutes!
Let's watch a horror type movie
이 함수는 여러 가지 방법으로 호출됩니다.
popcorn_time(120)
popcorn_time(150, 'thriller')
popcorn_time(200, 'horror', 'movie')
Play with the code here
2) 키워드 인수
popcorn_time
)와 두 개의 선택적 인수( time
, genre
) watch
의 위 예를 고려하십시오.3) 특수 매개변수
함수에 전달할 인수 수를 모르는 경우 어떻게 합니까?
Python은 다음과 같은 솔루션을 제공합니다.
임의 인수 - args
*임의의 키워드 인수 - **kwargs
임의 인수, *args
산출:
Largest number: 94
임의의 키워드 인수, **kwargs
산출:
Marvel Studios presents - Iron Man
Starring - Robert Downey Jr.
Marvel Studios presents - Captain America: The First Avenger
Starring - Chris Evans
Marvel Studios presents - Thor
Starring - Chris Hemsworth
함께 코딩하고 즐기십시오.
Reference
이 문제에 관하여(함수의 인수 및 매개변수), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/aswin2001barath/comprehension-in-python-383l텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)