Skip to content

Instantly share code, notes, and snippets.

@acrymble
Created July 5, 2011 19:46
Show Gist options
  • Select an option

  • Save acrymble/1065719 to your computer and use it in GitHub Desktop.

Select an option

Save acrymble/1065719 to your computer and use it in GitHub Desktop.
Python shell string interpolate
frame = 'This smells like a %s'
print frame
-> This smells like a %s
print frame % 'banana'
-> This smells like a banana
print frame % 'pear'
-> This smells like a pear
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment