Is there a way to expand a dict into a f-string with a similar result to using the {variable=}
syntax? Where each key-value pair would be treated as key=value, and items would be separated by commas?
For example:
kwargs = dict(a=5, b=2)
f'got {**kwargs=}' # results in an error:
SyntaxError: f-string: invalid syntax
# desired output: 'got a=5, b=2'