I have a list of tuples with three values ββin tuples
I want to create a new list of rows from the previous list with one value from tuples.
List [(string * string * int) ]
List[ for i in columns -> i.getfirstvalueintuple]
How can i do this? very simple question, but I can not understand.
Also, is there another way to create another type of list or seq from an existing list?
source
share