i have a list like this
["peter","1000","michell","2000","kelly","3000"]
and i would like to convert to
[("peter",1000),("michell", 2000),("kelly",3000)]
Please help. Thanks.
|
|
If you want to handle odd-length just add |
|||||||||||||||||
|
|
ony's solution is a bit shorter, but here's a non-recursive version using
The steps here are somewhat clearer (for me, at least) than in the recursive version. |
|||||
|
|
Exactly for a task like this I find it convenient to have a
It can be used to convert a list to pairs:
An example (note that the last element may be thrown away if it doesn't have pair):
It can be even easily extended to triplets or longer tuples:
To perform conversion from
which gives:
|
||||
|
|