Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion socode.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
import time
import urllib2
import platform
import pyttsx

def alisnic(number):
print 'fizz' * (number % 3 == 0) + 'buzz' * (number % 5 == 0)
Expand Down Expand Up @@ -556,7 +557,14 @@ def dpayne():
print 'There was an error'

return False


def lyndonarmitage():
engine = pyttsx.init()
print "\a"
s = "Beep Boop!"
engine.say(s)
engine.runAndWait()

if __name__ == "__main__":
starefossen()
heinzf(False) # this thing makes it hard to make sure stuff works, doesn't it?
Expand Down Expand Up @@ -615,6 +623,7 @@ def dpayne():
windspy()
samlabs821()
alisnic(random.randint(1, 1024))
lyndonarmitage()

# as per instructed, please leave this as the final function
lafin()