1. Function in Python :-
A function is a block of reusable code that performs a specific task.
A function in its simplest form is just a wrapper name for a block of code. You give it name and then when you call the function by that name, all the code...