#Function in python without input method with multiple results:
#Function in python without input method with multiple results:defproduct(Name,price,Quantity):print("Prduct name: "+Name)print("Price is: "+str(price))print("You have "+str(Quantity)+" in stock")
product("paracetamol","$2","10")