Please enable JavaScript.
Coggle requires JavaScript to display documents.
functions, procedures & more - Coggle Diagram
functions, procedures & more
Functions and procedures
A function is a pre-defined set of code that can be used for a number of things. python has in built functions like the random and round functions, but you can also write your own functions.
-
-
procedures
-
-
differences between procedures and functions are that a function can be used multiple times with different values while a procedure can be used multiple times but its
Parameters
-
Formal
A formal parameters is when a parameter has no value and is just telling the computer that there will be an actual parameter there later
-
-