+ 4
Def
What def mean in python?
3 Answers
+ 6
Defining a Function. ... Here are simple rules to define a function in Python. Function blocks begin with the keyword def followed by the function name and parentheses ( ( ) ). Any input parameters or arguments should be placed within these parentheses. You can also define parameters inside these parentheses.
https://www.tutorialspoint.com/python/python_functions.htm
+ 3
Thanks!
+ 3
no problem ^^