still pretty new to Python and programming in general. My current task is to print each item of a list on separate lines with an index identifier in front of it. E.g. My list is currently:
['Ada Log\n', 'Ena Blue\n', 'Kin Wall\n', 'Kin Wall\n', 'Foxy Rex\n', 'Esk Brown']
I want this to output as...
[1] Ada Log
[2] Ena Blue
[3] Kin Wall
[4] Foxy Rex
[5] Esk Brown
So that the numbers 1-5 can be used as a further input to produce more information. Thanks for any feedback.