I have a list of tuple where I want to print out key value of a certain element, like this.
tupple_list = [("abc", 10),
("cbb", 20),
("Abba", 30)]
print(tupple_list[-1])
The result will become
("Abba", 30)
How can I only get Abba without brackets?
Abba