how to extract an implicit dict expression (with statement return)

Fritz Loseries fritz at loseries.info
Thu Sep 9 11:20:03 EDT 2010


Hi,

I do not know how to subject my problem in a better way.

I have the following statement:

    return [ dict(x1 = elem.x1, x2 = elem.x2, x3 = elem.x3,)
                for elem in method(in_values)
              ]

How can I transform it to an explicit description:

    result = ...
    return result

Could not found a description for the here used form of for and what
[...] means.

Need this for debugging.
Thanks for any help.

Regards,

Fritz




More information about the Python-list mailing list