175k views
1 vote
consider the code snippet: def print numbers(first, second, third): print(first) print(second) print(third) print numbers(12, 17, 65) print numbers(1, 2, 3) print numbers(3, 3, 20) what are names of the paramters?

1 Answer

4 votes

Answer:

first, second, third

Step-by-step explanation:

a function takes parameters.

a function is defined with def.

if you have def printnumbers(first, second, third):

then the parameters are first, second, third

User Ninjin
by
5.9k points