Function
von Kohalli Rohan
1. Function simplifies the complexity of program by splitting into parts
2. Function is a block of organized reusable code that is used to perform a single action repeatedly
3. It is easy to combine code into into small function
4. Keyword followed by function name and paranthesis after the paranthesis colon must be used
5. Contains three parts: Function header Function block Function name
6. Huge code is divided into function which is easy to read, debug, test, mantain and modify the function
7. Need of function
8. Advantage of function
9. Length of program reduced due to function which defined once can be used number of times
10. Function defination
11. Function block starts with keyword "def()"
12. Function header:Identifies the code of the function
13. Function
14. New Topic