1
NomeDoProduto1 = str(input("Qual o seu primeiro produto? "))
NomeDoProduto2 = str(input("Qual o seu segundo produto? "))
NomeDoProduto3 = str(input("Qual o seu terceiro produto? "))
PrecoProduto1 = float(input("Digite o preço do")) print(NomeDoProduto1)
In the code above I want that in line 4 in the print the message appears type the price of:(and here appears the name of the first product). Like if on line 1 I said my product name is sugar then I want q on line 4 to appear (enter sugar price).
disregard line 2 and 3 which is my code. I was trying to do so but the syntax error. I know it is a basic error tbm.