-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathex4.py
More file actions
16 lines (14 loc) · 823 Bytes
/
ex4.py
File metadata and controls
16 lines (14 loc) · 823 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
cars = 100#The number of cars
space_in_a_car = 4.0#The space in each car
drivers = 30#The number of drivers
passengers = 90#The number of passengers
cars_not_driven = cars-drivers#The number of cars that are not driven
cars_driven = drivers#The number of cars driven
carpool_capacity = cars_driven*space_in_a_car#The number of people who can be transported
average_passengers_Per_car = passengers/cars_driven#The number of passengers that can be transported in each car
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.")