To print the final item in a list called soccer_players
, you can use indexing. In Python, negative indexing allows you to access elements from the end of the list. The final item can be accessed using the index -1
.
Here is the code to do that:
print(soccer_players[-1])
This will print the last item in the soccer_players
list.