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