-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathexercise-16.6.py
106 lines (79 loc) · 2.6 KB
/
exercise-16.6.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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
#!/usr/bin/env python
# encoding: utf-8
"""
exercise-16.6.py
Created by Terry Bates on 2014-07-05.
Copyright (c) 2014 http://the-awesome-python-blog.posterous.com. All rights reserved.
"""
import sys
import os
from copy import copy
class Time(object):
"""Represents the time of day.
attributes: hour, minute, second
"""
def print_time(time_obj):
hour, minute, second = time_obj.hour, time_obj.minute, time_obj.second
# Use join to quickly print out string colon separated
print ':'.join([str(hour).zfill(2), str(minute).zfill(2), str(second).zfill(2)])
def time_to_int(time_obj):
# We create fractional portions of the "hour" attribute
minutes = time_obj.hour * 60 + time_obj.minute
seconds = minutes * 60 + time_obj.second
return seconds
def int_to_time(seconds):
time = Time()
minutes, time.second = divmod(seconds, 60)
time.hour, time.minute = divmod(minutes, 60)
return time
def is_after(time_obj_1, time_obj_2):
# Return result from comparing via comput_scalar_time
return time_to_int(time_obj_1) < time_to_int(time_obj_2)
def increment(time_obj, seconds):
# Turn the time object into seconds
time_obj_seconds = time_to_int(time_obj)
ret_time_seconds = time_obj_seconds + seconds
return int_to_time(ret_time_seconds)
def add_time(t1, t2):
seconds = time_to_int(t1) + time_to_int(t2)
return int_to_time(seconds)
def mul_time(time_obj, number):
ret_time = Time()
ret_time_sec = int_to_time(ret_time_sec)
product = number / ret_time_sec
return int_to_time(product)
def time_per_mile(time_obj, distance):
# We have a time object, make it into a large integer
time_obj_int = time_to_int(time_obj)
# Once we have a large number, we then divide this by distance
sec_per_mile = time_obj_int / distance
# This gives us a second/mile pace, convert to a Time object
return int_to_time(sec_per_mile)
def main():
t1 = Time()
t1.hour = 12
t1.minute = 59
t1.second = 30
t2 = Time()
t2.hour = 11
t2.minute = 59
t2.second = 30
# Do comparison of two time objects, True if t1 occurs before t1, False otherwise
print is_after(t1, t2)
print "t1:Before increment"
print_time(t1)
print
print "Printing pure function increment value"
print_time(increment(t1, 600))
print
print "t1:After increment"
print_time(t1)
print "Time / distance foolishness"
t3 = Time()
t3.hour = 5
t3.minute = 13
t3.second = 30
distance = 5
print_time(time_per_mile(t3, distance))
if __name__ == '__main__':
main()