Skip to content

Instantly share code, notes, and snippets.

@ashimaathri
Created October 17, 2021 06:51
Show Gist options
  • Save ashimaathri/294793ffe718849a5be91c96f4194d8c to your computer and use it in GitHub Desktop.
Save ashimaathri/294793ffe718849a5be91c96f4194d8c to your computer and use it in GitHub Desktop.
To tuple or not to tuple
# Will print 'r', 'e', 'd'
for color in ('red'):
print(color)
# Will print 'red'
for color in ['red']:
print(color)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment