Answers for "subtract first element of list with every other element python"

1

python show only 1st element of nested lists

myList = [[1,2,3],[4,5,6],[7,8,9]]

#Quick answer
print([ele[0] for ele in myList])   #Prints [1, 4, 7]

#Other variations
print([[ele[0]] for ele in myList]) #Prints [[1], [4], [7]]
print([[ele[0] for ele in myList]]) #Prints [[1, 4, 7]]
Posted by: Guest on March-13-2020
3

python get first n elements of list

l = [1, 2, 3, 4, 5]
print(l[:3])
Posted by: Guest on June-02-2020

Code answers related to "subtract first element of list with every other element python"

Code answers related to "TypeScript"

Browse Popular Code Answers by Language