Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

#Function in python without input method with multiple results:

#Function in python without input method with multiple results:

def product(Name,price,Quantity):
    print("Prduct name: "+Name)
    print("Price is: "+str(price))
    print("You have "+str(Quantity)+" in stock")
product("paracetamol","$2", "10")
 
PREVIOUS NEXT
Tagged: #python #input #method #multiple
ADD COMMENT
Topic
Name
9+1 =