Introduction Function is a Python’s basic structure. Function often is used to reuse code. you can repeat task that define a function for code reuse. Function Advantage (1) Maximizing code reuse and minimizing redundancy In developing software, don't repeat yourself is a a principle . We use function to achieve the goal in Python.A section code is adopted many times or offer other to use. We need to package to a function and offer many time for reuse . (2) Procedural decomposition A flow program is combined from Function component (1) def Syntax def name(arg1, arg2….) : statements … Example def add(a, b): print(a+b) >>>add(1,2) 3 (2) return Syntax def name(arg1, arg2….) : statements … return result Example def add(a, b): return a+b >>>print(add(1,2)) 3 (3) lambda lambda is...