Answers for "how to print first element of tuple in python"

2

sort tuple by first element python

a = [(5,8), (3,4), (9,7)]

#sort by first element in tuple
result = sorted(a, key=lambda tup: tup[0])

#OR to do inplace sort:

a.sorted(key = lambda tup: tup[0])

# output
[(3, 4), (5, 8), (9, 7)]
Posted by: Guest on April-30-2020
1

get first element of tuple python

firstItem = tupple[0]
Posted by: Guest on March-27-2021

Code answers related to "how to print first element of tuple in python"

Python Answers by Framework

Browse Popular Code Answers by Language