-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathex4.py
31 lines (22 loc) · 848 Bytes
/
ex4.py
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
31
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."
# Deleted copied line 12
print "We can transport", carpool_capacity, "people today." #correction
print "We need to put about", average_passengers_per_car, "in each car."
#Study Drill
#Error explained - Seems he forgot to either put in "car_pool_capacity" or mispelled it.
print "****************** Test Program ****************************"
print "Why does 4.0 + 5", 4.0 + 5
A = 4.0
B = 5
print "Why does A + B", A * B
print "But when I do this", carpool_capacity