python functions
python functions
Recursive Functions
Concept Overview Video: https://youtu.be/ZdD3HGEejLU?si=dsaArfnpFbIyQaYt
Built-in Functions
Concept Overview Video: https://youtu.be/SRc2a4XKcQ4?si=suE13-uupH-Tg4e8
Simple Calculator
Implement a simple calculator using functions for addition, subtraction, multiplication, and
division. Allow the user to input the operation they want to perform, followed by two
numbers. Utilize default parameter values in one of the functions.
Example:
Input: 'Multiply 5 3'
Output: `15`
Additional Problems: