Transform to f-string II

Transform the message string into an f-string and embed the necessary variables and Python expressions.
product = 'Laptop' price = 999 quantity = 3 # Complete the following line...
message = 'Product: {}, Price: {}, Quantity: {}, Total: {}'
print(message) # expected: 'Product: Laptop, Price: 999, Quantity: 3, Total: 2997'
Python
Setting up Python environment...
Output