Tagged Questions
5
votes
5answers
381 views
Split a list into nested lists on a value
Say I have a list like so:
[1, 4, None, 6, 9, None, 3, 9, 4 ]
I decide to split this into nested lists on None, to get this:
[ [ 1, 4 ], [ 6, 9 ], [ 3, 9, 4 ] ]
Of course, I could have wanted to ...
4
votes
2answers
137 views
retrieve an element from a list of tuple with more than 2 elements (Haskell)
I'm new to Haskell and need some help on this situation. I have the following list
-- create a type for bank account
type AcNo = String
type Name = String
type City = String
type Amnt = Int
type ...
4
votes
3answers
932 views
Mapping a nested list with List Comprehension in Python?
I have the following code which I use to map a nested list in Python to produce a list with the same structure.
>>> nested_list = [['Hello', 'World'], ['Goodbye', 'World']]
>>> ...
2
votes
3answers
196 views
List Comprehension in Nested Lists
I have a list like [["foo", ["a", "b", "c"]], ["bar", ["a", "b", "f"]]]
and I'm wanting to split it out so I can get a count of the total number of As, Bs, etc. but I'm new to Python and having a bit ...
0
votes
3answers
66 views
Nested Lists and List Comprehensions
I am fairly new to Python and I'm having trouble figuring out how to apply a list comprehension to part of a nested list (specifically at the index level).
For instance, if I have the following:
...