Created
May 4, 2014 05:57
-
-
Save Hardtack/8592f3745ed37c55f3be to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os | |
import random | |
with open('people.txt') as f: | |
s = f.read().strip() | |
li = s.split('\n') | |
s = random.choice(li) | |
os.system('say %s' % s) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
민수 | |
현경 | |
재림 | |
우람 | |
현진 | |
차근 | |
건우 | |
종엽 | |
지은 | |
의철 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment