Hello, OnlineGDB Q&A section lets you put your programming query to fellow community users. Asking a solution for whole assignment is strictly not allowed. You may ask for help where you are stuck. Try to add as much information as possible so that fellow users can know about your problem statement easily.

If a save a small Pytho Program, with functions, how to run it with acertain input value..what command is required

–1 vote
asked Feb 7, 2019 by S Ghosh (120 points)

1 Answer

0 votes
answered Feb 8, 2019 by Prataap Mengu (180 points)
You hav to jst call the function and pass the parameters in paranthesis

Eg:- def add(a,b):    #here we have created a function

              c=a+b

              print(c)

        add(3,5)         #here we have called the function with parameters in paranthesis
Welcome to OnlineGDB Q&A, where you can ask questions related to programming and OnlineGDB IDE and and receive answers from other members of the community.
...