when the user hits enter it will display Price must be a valid positive number
product_price=input("Please enter product price:")
while product_price <=0 or product_price=="":
print"Price must be a valid positive number"
product_price=input("Enter product price:")
but it get the following error when the user hits enter
SyntaxError: unexpected EOF while parsing