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

is there a place where I can find a list of definitions that are used in this language? such as what is an argument?

OpenStudy (anonymous):

If you google "Python reference sheet" it will give you a lot of nice cheat sheets for what things are and what they do. But it probably won't give you a lot of information on terms like "argument" that are pretty standard for all languages. An argument, by the way, is just something that you give to a function as input. For example, if I write a function to add two numbers, like so: def add_two(x,y): return x + y x and y are the arguments that are the input and x+y is what's returned, the output.

OpenStudy (anonymous):

ok, thanks alot.

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!