# Python Questions for V
- Write a calcultor program which will be responsible for the following -
- summation
- multi
- remainder
**NOTE -** all the three will be functions, taking two arguments, and doing the operations based on your logic
- Write a calculator program which will be responsible for the following -
- summation
- multiplication
**NOTE -** both of the above will be function, and will accept only one argument which will be a list of integers, and sum/multi all values in the list
- Write a program which will take an integer and input and print the factors of that input
**NOTE -** The main logic should be written as a function
- Write a function and which will take 2 arguments and return True if both of the input is either odd or even
- Example -
- func(2, 6) -> True
- func(3, 9) -> True
- func(1, 2) -> False
- func(9, 0) -> False