forked from lugnitdgp/Learn-Python
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsampleprint.py
More file actions
Latest commit
22 lines (22 loc) · 763 Bytes
/
Copy pathsampleprint.py
File metadata and controls
22 lines (22 loc) · 763 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
print#"Hello World!"
print"Hello Again"
print"I like typing this."
print"This is fun."
print'Yay! Printing.'
print"I'd much rather you 'not'."
print'I "said" do not touch this.'
print3+2<5-7
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"We need to put about", average_passengers_per_car, "in each car."
print"We have", passengers, "to carpool today."
print"There will be", cars_not_driven, "empty cars today."
print"We can transport", carpool_capacity, "people today."
print"There are only", drivers, "drivers available."
print"There are", cars, "cars available."