Hi,

Soheil Pourbafrani <soheil.i...@gmail.com> schrieb am Fr., 2. Nov. 2018 um
15:43 Uhr:

> Hi, I have an RDD of the form (((a), (b), (c), (d)), (e)) and I want to
> transform every row to a dictionary of the form a:(b, c, d, e)
>
> Here is my code, but it's errorful!
>
> map(lambda row : {row[0][0] : (row[1], row[0][1], row[0][2], row[0][3]))
>
> You're missing a `}`:

lambda row: {row[0][0]: (...)*}*

HTH

Eike

Reply via email to