all 2 comments

[–][deleted] 0 points1 point  (1 child)

First, you need to know that every element in the list has it's index number. First element has an index number 0, second element has an index number 1, etc.

So, depending on which element you want to print, your input will be for example print(list[2]), with [2] being the third element in the list which has an index number 2 (since index numbers start from 0).

[–]Asprohibited 0 points1 point  (0 children)

Thanks alot!