We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
In python I've found that sometimes I need to change dictionary to a list of key, value pairs. So from that
{'key1: 'value1', 'key2': 'value2'}
(('key1', 'value1), ('key2', 'value2'))
I don't think it's possible with current implementation because of lack of ability to use g modifier.