I have a list where the items are dictionaries. the dictionary values are in unicode format and am trying to compare the unicode values to strings. So, I tried a below lambda function expecting a conversion of unicode to string;
a=[(lambda x: x.unicode('UTF-8') ) for i in paid_submissions[0].values()]
print(a)
[ at 0x11335db18>, at 0x113357d70>, at 0x113357b90>, at 0x113357a28>, at 0x1133b5050>, at 0x1133b50c8>]