+ 2
How many parameters does this have?
def j (a, b): e = a + b return e I thought there were three but I got the question wrong. I don't understand why.
5 Respuestas
+ 19
2 only the ones inside parentheses....
+ 8
the value inside the parenthesis are the parameters while e is just a variable
+ 2
yeah only two
+ 2
j is the function name I suppose and a and b r the parameters
+ 1
Okay, thank you guys. :)