習(xí)題4-變量和命名
- python變量和命名練習(xí)程序
- 附加練習(xí)
python變量和命名練習(xí)程序
# -*-coding: utf-8 -*-
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 availabes."
print "There are only", drivers,"drivers availabe."
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"
運(yùn)行結(jié)果
PS F:\python大師\習(xí)題>
PS F:\python大師\習(xí)題> python .\ex4.py
There are 100 cars availabes.
There are only 30 drivers availabe.
There will be 70 empty cars today.
We can transport 120.0 People today.
We have 90 to carpool today
We need to put about 3 in each car
附件練習(xí)
When I wrote this program the first time I had a mistake, and Python told me about it like this:
Traceback (most recent call last):
File "ex4.py", line 8, in <module>
average_passengers_per_car = car_pool_capacity / passenger
NameError: name 'car_pool_capacity' is not defined
原因:變量未定義