# Bug report ### Bug description: [print()](https://docs.python.org/3/library/functions.html#print) accepts the single starred expression `*v` as shown below: ```python v = ['A', 'B', 'C', 'D', 'E'] print(*v) # A B C D E ``` But `print()` doesn't accept the double starred expression `**v` as shown below: ```python v = {'name':'John', 'age':36} print(**v) # TypeError: 'name' is an invalid keyword argument for print() ``` So, `print()` should accept the double starred expression `**v`, displaying the output as shown below: ```python v = {'name':'John', 'age':36} print(**v) # name:John age:36 ``` And, [f-strings](https://docs.python.org/3/tutorial/inputoutput.html#formatted-string-literals) doesn't accept the single and double starred expression `*v` and `**v` as shown below: ```python v = ['A', 'B', 'C', 'D', 'E'] print(f'{*v}') print(f'{*v=}') # SyntaxError: can't use starred expression here ``` ```python v = {'name':'John', 'age':36} print(f'{**v}') print(f'{**v=}') # SyntaxError: f-string: expecting a valid expression after '{' ``` So, `f-strings` should accept the single and double starred expression `*v` and `**v`, displaying the outputs as shown below: ```python v = ['A', 'B', 'C', 'D', 'E'] print(f'{*v}') # A B C D E print(f'{*v=}') # *v=A B C D E ``` ```python v = {'name':'John', 'age':36} print(f'{**v}') # name:John age:36 print(f'{**v=}') # **v=name:John age:36 ``` ### CPython versions tested on: 3.12 ### Operating systems tested on: Windows