본문 바로가기

Python/Python 어렵게 배우기

Python 어렵게 배우기 - Exercise 4: Variables And Names

원문 : 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) 변수로 사용된다.


반응형