You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Queries in data produced with many functions contain tuples. For example product, which is the same function as in itertools contains tuples, and regex_findall i.e. re.findall.
It is quite a surprise to find the jmespath query does not work and it takes a lot of time to figure out to convert all tuples into lists (with map('list') filter or such).
the code above will print the following results:
It would be great if tuples were treated as lists. It would allow to apply
jmespath
dirrectly tolist(zip(..))
results.The text was updated successfully, but these errors were encountered: