Hello guys, are function parameters necessary in python ? The majority of function I've seen so far doesn't make use of any parameters.
Because all variables defined in our main body (that is outside functions etc, are global variables so no need to pass them as arguments rights?)
Maybe when we will need to define a parameter is when a function is calling another function ?