Ask your own question, for FREE!
MIT 6.00 Intro Computer Science (OCW) 7 Online
OpenStudy (anonymous):

how to define function?

OpenStudy (anonymous):

http://docs.python.org/tutorial/controlflow.html#defining-functions you probably should start at the beginning of the tutorial first. The tutorial should also be installed on your computer.

OpenStudy (anonymous):

I need some sort of easy 2 lines answer ..

OpenStudy (anonymous):

def function(params): statement1 . . . statement(n)

OpenStudy (anonymous):

Functions in Python are defined with the def statement, with no need to specify return type and no need to include a return statement within the function. In python, you follow the following syntax to define a function (remember the 4 spaces indent after pressing return when using the colon in Python, because Python cares about whitespace): def myFunction(parameters): dostuff() domorestuff() return something

Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!
Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!