Created
December 29, 2010 01:35
-
-
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.
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
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