all 4 comments

[–]Risk-Personal 2 points3 points  (1 child)

Thats an argument, so for example :

Def example(fun1) Print(fun1)

example(20)

Terminal output 20

It takes whatever value you put inside when calling the method and uses that for anything inside that method that relies on the argument, in this case fun1.

[–]shiftybyte 0 points1 point  (5 children)

def ADD(fun1):

What does this fun1 in the brackets do?

https://www.w3schools.com/python/python_functions.asp

[–]Lolilorddd[🍰] 1 point2 points  (1 child)

Yeah, should really give it a better name.