Skip to content

Instantly share code, notes, and snippets.

@mbmccormick
Created December 29, 2010 01:35
Show Gist options
  • Save mbmccormick/758022 to your computer and use it in GitHub Desktop.
Save mbmccormick/758022 to your computer and use it in GitHub Desktop.
Simple function that returns a string formatted to read at a slow speed in Twilio.
def ReadSlow(value):
for c in list(value):
output += str(c + ", ")
return output.strip()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment