Untitled
unknown
plain_text
2 years ago
274 B
3
Indexable
# prompt user to enter product name and price product_name = input("Enter the name of the product: ") product_price = float(input("Enter the price of the product: ")) # display product information print("Product Name:", product_name) print("Product Price:", product_price)
Editor is loading...