Home > other >  Use a custom function parameters in parentheses?
Use a custom function parameters in parentheses?

Time:10-22

Def A (A, b, c), (d, e))

The parameters in the parentheses what use? Like python3 does not support?

CodePudding user response:

If a tuple

CodePudding user response:

Define functions will be wrong, if the incoming parameters do not have what problem,
Such as def a (x, y, z) : pass, and then call the incoming time can a (a, (b, c), (d, e)),
  • Related