Skip to content

Instantly share code, notes, and snippets.

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

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

Select an option

Save acrymble/1065627 to your computer and use it in GitHub Desktop.
String Indicies
s = 'hello world'
print s[0]
-> h
print s[1]
-> e
m = ['hello', 'world']
print m[0]
-> hello
print m[1]
-> world
print m[0][1]
-> e
print m[1][0]
-> w
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment