Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
May 5, 2021 07:34 pm GMT

Difference between arguments and parameters

Hi all.
Most people use arguments and parameters interchangeably.
But technically they are not the same.

What are arguments

In simple words:

  • arguments are data/values that are passed to a function when you call them.
# define the functiondef add(a, b):    ...add the values# call the functionadd(2, 4)# 2 and 4 are the arguments.# they are the values the function will manipulate.

What are parameters

In simple words:

  • parameters are dummy names you pass/give a function when you are defining it.
# Example in pythondef add(a, b):    ...add the values# a and b are the parameters for the function# they just acts as a placeholder.

Conclusion

If I might have missed anything, please leave a comment and help me learn from you.
Thanks for reading!!


Original Link: https://dev.to/benjithorpe/difference-between-arguments-and-parameters-58gm

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To