Top "Arguments" questions

An argument is a value passed to a function, procedure, or command line program.

What is a maximum number of arguments in a Python function?

It's somewhat common knowledge that Python functions can have a maximum of 256 arguments. What I'm curious to know is if …

python function arguments language-features limit
'verbose' argument in scikit-learn

Many scikit-learn functions have a verbose argument that, according to their documentation, "[c]ontrols the verbosity: the higher, the more …

python arguments scikit-learn verbosity verbose
Why am I getting this unexpected keyword argument TypeError?

I'm testing some code with *args and **kwargs, and I wrote a dictionary for the **kwargs. For some reason, I'm …

python arguments keyword-argument
Arguments or parameters?

I often find myself confused with how the terms 'arguments' and 'parameters' are used. They seem to be used interchangeably …

language-agnostic parameters function arguments terminology
Detect if parameter passed is an array? Javascript

Possible Duplicate: How to detect if a variable is an array I have a simple question: How do I detect …

javascript arrays arguments parameter-passing
iOS performSelectorOnMainThread with multiple arguments

I would like to perform a selector on the main thread from another thread, but the selector has multiple arguments, …

objective-c ios arguments performselector
Python: Passing parameters by name along with kwargs

In python we can do this: def myFun1(one = '1', two = '2'): ... Then we can call the function …

python function arguments keyword-argument pass-by-name
Is there a way to pass auto as an argument in C++?

Is there a way to pass auto as an argument to another function? int function(auto data) { //DOES something }

c++ function arguments auto
How do I call a specific Method from a Python Script in C#?

I'm wondering if there is a possibility to call a specific Method from a Python script over a C# project. …

c# python methods arguments ironpython
Is it possible to pass properties as "out" or "ref" parameters?

Can I pass a property as an "out" or "ref" parameter if not then why not? e.g. Person p = …

c# arguments pass-by-reference