Created
September 16, 2019 05:12
-
-
Save adv27/ff25ece0678e68e16a5f4fcb2deb7306 to your computer and use it in GitHub Desktop.
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
| for i,a in enumerate(['cat', 'dog']): | |
| print('{} is {}'.format(a, i)) | |
| # output: | |
| # cat is 0 | |
| # dog is 1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment