Keyword Arguments

Jmnote (토론 | 기여)님의 2014년 8월 21일 (목) 11:37 판 (Jmnote 사용자가 Keyword arguments 문서를 Keyword Arguments 문서로 옮겼습니다)
keyword arguments

1 Python

def showUrl( host, port ):
    print( 'http://' + host + ':' + str(port) )

showUrl( 'google.com', 80 )
showUrl( port=80, host='google.com' )
# http://google.com:80
# http://google.com:80

2 같이 보기

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}