Just a quick tip if you're bored with the standard sound effects that are included with Pythonista:
You can actually use a lot of standard iOS sound effects as well (e.g. the various text message sounds). Here's how:
import os
import sound
import time
for dirpath, dirnames, filenames in os.walk('/System/Library/Audio/UISounds'):
for f in filenames:
if f.endswith('.caf'):
full_path = os.path.join(dirpath, f)
sound.play_effect(full_path)
time.sleep(1)
As of iOS 7.1, there are 99 of them. Have fun!