Obtenga el último artículo en una lista de Python

# Get the last element in a List
list = ["A", "B", "C"]

print(list[-1])
Jack Roy