본문 바로가기

Python/Python 어렵게 배우기

Python 어렵게 배우기 - Exercise 13: Parameters, Unpacking, Variables

원문 : http://learnpythonthehardway.org/book/ex13.html


ex13.py

from sys import argv

script, first, second, third = argv

print "%r" % argv
print "The script is called:", script
print "Your first variable is:", first
print "Your second variable is:", second
print "Your third variable is:", third



결과 (python ex13.py one two three)




알 수 있는 내용...

1. 외부 라이브러리의 기능을 사용할때는 (from...) import를 사용한다.

2. 스크립트를 실행할때 "argument variable"(argv) 를 입력 받을 수 있다. 구분은 공백(" ") 으로 한다.

3. "변수1, 변수2, 변수3 = [값1, 값2, 값3]" 의 형태로 변수 1, 2, 3에 한번에 값을 줄 수 있다. (unpack 이라고 함)

4. unpack 할때 변수의 수가 맞지 않으면 아래 처럼 에러가 난다.








반응형