원문 : http://learnpythonthehardway.org/book/ex4.html
변수에 대해서 공부해 보자
일단 아래와 같이 작성해보자
cars = 100 space_in_a_car = 4.0 drivers = 30 passengers = 90 cars_not_driven = cars - drivers cars_driven = drivers carpool_capacity = cars_driven * space_in_a_car average_passengers_per_car = passengers / cars_driven print "There are", cars, "cars available." print "There are only", drivers, "drivers available." print "There will be", cars_not_driven, "empty cars today." print "We can transport", carpool_capacity, "people today." print "We have", passengers, "to carpool today." print "We need to put about", average_passengers_per_car, "in each car."
결과...
알 수 있는 내용...
1. 달리 변수 선언 안하고 막 써도 된다.
2. "a = 4", "b = 4.0" 두 경우 a는 정수형(int), b는 실수형(float) 변수로 사용된다.
반응형
'Python > Python 어렵게 배우기' 카테고리의 다른 글
Python 어렵게 배우기 - Exercise 6: Strings and Text (0) | 2013.11.20 |
---|---|
Python 어렵게 배우기 - Exercise 5: More Variables and Printing (0) | 2013.11.20 |
Python 어렵게 배우기 - Exercise 3: Numbers and Math (0) | 2013.11.19 |
Python 어렵게 배우기 - Exercise 2: Comments and Pound Characters (0) | 2013.11.18 |
Python 어렵게 배우기 - Exercise 1: A Good First Program (0) | 2013.11.18 |