1.1 --- a/sayings.py Sat Jan 18 20:54:15 2014 +0100
1.2 +++ b/sayings.py Sat Jan 18 21:05:22 2014 +0100
1.3 @@ -2,27 +2,27 @@
1.4
1.5 def get_saying():
1.6 sayings = [('The Zen of Python, by Tim Peters', '__Tim Peters, The Zen of Python'),
1.7 - ("Beautiful is better than ugly.", '__Tim Peters, The Zen of Python'),
1.8 - ("Explicit is better than implicit.", '__Tim Peters, The Zen of Python'),
1.9 - ("Simple is better than complex.", '__Tim Peters, The Zen of Python'),
1.10 - ("Complex is better than complicated.", '__Tim Peters, The Zen of Python'),
1.11 - ("Flat is better than nested.", '__Tim Peters, The Zen of Python'),
1.12 - ("Sparse is better than dense.", '__Tim Peters, The Zen of Python'),
1.13 - ("Readability counts.", '__Tim Peters, The Zen of Python'),
1.14 - ("Special cases aren't special enough to break the rules.", '__Tim Peters, The Zen of Python'),
1.15 - ("Although practicality beats purity.", '__Tim Peters, The Zen of Python'),
1.16 - ("Errors should never pass silently.", '__Tim Peters, The Zen of Python'),
1.17 - ("Unless explicitly silenced.", '__Tim Peters, The Zen of Python'),
1.18 - ("In the face of ambiguity, refuse the temptation to guess.", '__Tim Peters, The Zen of Python'),
1.19 - ("Although that way may not be obvious at first unless you're Dutch.", '__Tim Peters, The Zen of Python'),
1.20 - ("Now is better than never.", '__Tim Peters, The Zen of Python'),
1.21 - ("Although never is often better than *right* now.", '__Tim Peters, The Zen of Python'),
1.22 - ("If the implementation is hard to explain, it's a bad idea.", '__Tim Peters, The Zen of Python'),
1.23 - ("If the implementation is easy to explain, it may be a good idea.", '__Tim Peters, The Zen of Python'),
1.24 - ("Namespaces are one honking great idea -- let's do more of those!", '__Tim Peters, The Zen of Python'),
1.25 - ]
1.26 -
1.27 + ("Beautiful is better than ugly.", '__Tim Peters, The Zen of Python'),
1.28 + ("Explicit is better than implicit.", '__Tim Peters, The Zen of Python'),
1.29 + ("Simple is better than complex.", '__Tim Peters, The Zen of Python'),
1.30 + ("Complex is better than complicated.", '__Tim Peters, The Zen of Python'),
1.31 + ("Flat is better than nested.", '__Tim Peters, The Zen of Python'),
1.32 + ("Sparse is better than dense.", '__Tim Peters, The Zen of Python'),
1.33 + ("Readability counts.", '__Tim Peters, The Zen of Python'),
1.34 + ("Special cases aren't special enough to break the rules.", '__Tim Peters, The Zen of Python'),
1.35 + ("Although practicality beats purity.", '__Tim Peters, The Zen of Python'),
1.36 + ("Errors should never pass silently.", '__Tim Peters, The Zen of Python'),
1.37 + ("Unless explicitly silenced.", '__Tim Peters, The Zen of Python'),
1.38 + ("In the face of ambiguity, refuse the temptation to guess.", '__Tim Peters, The Zen of Python'),
1.39 + ("Although that way may not be obvious at first unless you're Dutch.", '__Tim Peters, The Zen of Python'),
1.40 + ("Now is better than never.", '__Tim Peters, The Zen of Python'),
1.41 + ("Although never is often better than *right* now.", '__Tim Peters, The Zen of Python'),
1.42 + ("If the implementation is hard to explain, it's a bad idea.", '__Tim Peters, The Zen of Python'),
1.43 + ("If the implementation is easy to explain, it may be a good idea.", '__Tim Peters, The Zen of Python'),
1.44 + ("Namespaces are one honking great idea -- let's do more of those!", '__Tim Peters, The Zen of Python'),
1.45 + ]
1.46 +
1.47 shuffle(sayings)
1.48 -
1.49 +
1.50 saying, author = sayings[0]
1.51 return saying, author