파이썬 함수 매개변수 default값 적용 방법.

kkb의 이미지

(함수) get_status()
(매개변수) index 인덱스 STRING(1) N 기본값 : 최대값

API 문서에 위와 같이 되어 있고
제가 구현한 함수는 아래와 같습니다.
(함수 이름이나 코드를 최대한 간략하게 작성하였습니다.)

def set_current_status(index):
	status = get_status(index)
	set_status(status)

set_current_status()을 호출할 때
set_current_status('1'), set_current_status('2')와 같이 호출하면 되지만

set_current_status()과 같이 호출해서
get_status()에서 default 값이 호출되도록 하고 싶은데
일반적으로 사용하는 방법이 있을까요?

최대값은 상태에 따라 달라질 수 있습니다.

제가 생각한 방법 중에 하나는 아래와 같이 구현해서

def set_current_status(index):
	if index == '0':
		status = get_status()
	else:
		status = get_status(index)
	set_status(status)

set_current_status('0') set_current_status('1') set_current_status('2')...
이런 식으로 해보는 방법도 생각해봤는데
set_current_status() set_current_status('1') set_current_status('2')...
이렇게 할 수 있도록 했으면 좋겠네요.
방법이 있으면요.

get_status() 함수 원형을 볼 수 있는지 없는지 잘 모르겠지만 알아보고 있는 중입니다.

kkb의 이미지

고민하다보니 아래와 같이 구현하면 원하는 대로 동작할 거 같기는 하네요.
실제 필드에서는 보통 어떻게 많이 하는지 궁금하네요.

def set(index = False):
	if index == False:
		status = get_status()
	else:
		status = get_status(index)
	set_status(status)
라스코니의 이미지

이게 맞습니다.

익명 사용자의 이미지

함수 set의 매개변수에는 달리 용도가 없이 get_status에 그대로 넘겨줄 뿐이라면
아래와 같이 송두리째 받아서 포장도 안 뜯고 넘겨주는 방식이 있긴 합니다.

def set(*args, **kwargs):
  status = get_status(*args, **kwargs)
  set_status(status)

여기서 args, kwargs는 문자 그대로 묶어서 넘겨주기 위한 매개변수에 관습적으로 붙이는 이름으로,
그 자체로는 아무 의미도 없기 때문에, 위 함수 원형을 보게 되는 다른 사람들이 "???" 할 수 있습니다.

쉽게 말해, def set(index)였다면 "index를 넘겨야 하는구나" 쉽게 판단할 수 있지만,
위와 같으면 대체 뭘 넘겨줘야 하는지 알기 쉽지 않다는 거죠.

저런 넘겨주기식 함수의 경우 그래서 문서화가 특히 중요합니다.

Anti-Lock의 이미지

'set' 은 파이썬에서 기본으로 제공하는 set 클래스와 이름이 같습니다.
다른 이름을 사용하실 것을 권해 드립니다.

kkb의 이미지

그렇네요.
실제 코드는 다른 이름인데 예시에서 간략하게 작성하려다 보니
혼동을 드렸을 수도 있겠네요.
set() -> set_current_status() 이라는 이름으로 수정하였습니다.
감사합니다.

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.