Created
January 20, 2020 02:04
-
-
Save BetterProgramming/5d48eb8af7360dab8fb4754a8c003e89 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
| scores = [54,67,48,99,27] | |
| for i, score in enumerate(scores, 1): | |
| print(i, score) | |
| """ | |
| 1 54 | |
| 2 67 | |
| 3 48 | |
| 4 99 | |
| 5 27 | |
| """ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment