114k views
3 votes
What do you use to separate arguments in a function?

1 Answer

0 votes

Answer:

Comma (,)

Step-by-step explanation:

In a function header/call when we take more than one arguments then we have to use commas in order to separate them

Example


\tt def\:Hello(a,b):

Arguments are of three types

  • Keyword/Named Argument
  • positional argument
  • Default arguments

User Jasonkarns
by
7.9k points