Message 1 of 7
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hi all.
I need help changing the list. The original list has the following format:
'((2.1 3.5 0.0) (10.9 11.2 3.6) (12.4 19.7 5.5))
it needs to be converted to a list of this format:
'(2.1 3.5 10.9 11.2 12.4 19.7)
that is, in the original list should remove the third item of each sublist, and transform the original list from a nested list to a simple list. In other words, the elements of the original list marked in red must be deleted.
Solved! Go to Solution.