Skip to content

Commit 2e7ff9b

Browse files
committed
Completed Ex 1.6
1 parent 204d03d commit 2e7ff9b

1 file changed

Lines changed: 6 additions & 5 deletions

File tree

Work/sears.py

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
1-
#sears.py
2-
bill_thickness = 0.11 * 0.001 # Meters (0.11mm)
3-
sears_height = 442 # Height (meters)
4-
num_bills = 1
5-
day = 1
1+
# sears.py
2+
3+
bill_thickness = 0.11 * 0.001 # Meters (0.11 mm)
4+
sears_height = 442 # Height (meters)
5+
num_bills = 1
6+
day = 1
67

78
while num_bills * bill_thickness < sears_height:
89
print(day, num_bills, num_bills * bill_thickness)

0 commit comments

Comments
 (0)