parameters in functions?

by 1 replies
1
Hey guys, I'm just starting to learn programming from the website Udacity.com, and they use python for the beginners computer science course. I was just introduced to functions and I wanted to know, when making a function, how do you know what parameters to use? How many to use? I really don't understand this concept :S
any help would be great, thanks
#programming #functions #parameters
  • Every structure has its own number of parameters. You can use as many as you need and as many you want to. Parameter of a function passes the values in the function when a function is called.
    You should use your function as you need to design the program.

Next Topics on Trending Feed

  • 1

    Hey guys, I'm just starting to learn programming from the website Udacity.com, and they use python for the beginners computer science course. I was just introduced to functions and I wanted to know, when making a function, how do you know what parameters to use? How many to use? I really don't understand this concept :S any help would be great, thanks