Skip to content

Instantly share code, notes, and snippets.

@IndhumathyChelliah
Last active July 16, 2020 03:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save IndhumathyChelliah/e0119df6da55810267b3904140482cca to your computer and use it in GitHub Desktop.
Save IndhumathyChelliah/e0119df6da55810267b3904140482cca to your computer and use it in GitHub Desktop.
t=('red','blue','green')
print (t[1]) #Output: blue
t=(1,2,3)
#indexing starts at 0
print (t[0])#Output: 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment