開発環境
- OS X Mavericks - Apple(OS)
- Emacs (CUI)、BBEdit - Bare Bones Software, Inc. (GUI) (Text Editor)
- Python (プログラミング言語)
Head First Python (Paul Barry(著)、 O'Reilly Media )のChapter 6(Custom data Objects: Bundling code with data)、SHARPEN YOUR PENCIL(p.195)を解いてみる。
SHARPEN YOUR PENCIL(p.195)
コード(BBEdit)
sample195.py
#!/usr/bin/env python3 #-*- coding: utf-8 -*- def sanitize(time_string): if '-' in time_string: spliter = '-' elif ':' in time_string: spliter = ':' else: return time_string (mins, secs) = time_string.split(spliter) return mins + '.' + secs class Athlete: def __init__(self, name, dob, times): self.name = name self.dob = dob self.times = times def top3(self): return sorted(set(sanitize(t) for t in self.times))[:3] def getCoachData(filename): try: with open(filename) as f: data = f.readline() temp = data.strip().split(',') return Athlete(temp.pop(0), temp.pop(0), temp) except IOError as ioerr: print('File error: {0}'.format(ioerr)) return None for filename in ['sarah2.txt', 'james2.txt', 'julie2.txt', 'mikey2.txt']: athlete = getCoachData(filename) print("{0}'s fastest times are: {1}".format(athlete.name, athlete.top3()))
入出力結果(Terminal)
$ ./sample195.py Sarah Sweeney's fastest times are: ['2.18', '2.21', '2.22'] James Lee's fastest times are: ['2.01', '2.16', '2.22'] Julie Jones's fastest times are: ['2.11', '2.23', '2.59'] Mikey McManus's fastest times are: ['2.22', '2.31', '2.38'] $
0 コメント:
コメントを投稿