-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathex4.py
More file actions
30 lines (27 loc) · 981 Bytes
/
ex4.py
File metadata and controls
30 lines (27 loc) · 981 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# 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
# "the varible car_pool_capacity is defined wrong carpool_capacity
# is used instead"
# 4.0 used as float, possible average?
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_passenger_per_car = passengers / cars_driven
# variable
print "There are", cars, "cars available."
# variable
print "There are only", drivers, "drvers available."
# cars - drivers
print "There will be", cars_not_driven, "empty cars today."
# amount of room
print "We can transport", carpool_capacity, "people today."
# amount of passengers
print "We have", passengers, "to carpool today."
# number of people per car
print "We need to put about", average_passenger_per_car, "in each car."