0
What is the purpose of my_func
3 Réponses
+ 1
That's just the function name. If you noted, it is the same name used to call the function later on in the code. Function parameters are passes after that definition.
0
Def my_func(parameter_1,parameter_2):
for parameter_2 in parameter_1:
do stuff
in short....whatever you want!
0
thank you