Home Work 03

17th March 2024

This is our third homework assignment where you will address the following questions and submit your GitHub link containing either a Jupyter Notebook or a Python file

Question 1 - Create the function for arthimetic operations

Function accepts two numbers and perform all the arthimetic operation

Output should atleast resemble like this

arthimetic_operations(10,3)
Addition:  13
Subtraction:  7
Multiplication:  30
Division:  3.33
Remainder:  1
Exponential: 1000

Question 2 - What are the mistakes in the following code

What is the reason for that error

a = 10
b = 0

print(a / b)

print(a % b)

print(a = b)

print(a > b)

new =  5._23

print(new + a)

Use comments in py file or markdown in ipynb file to provide the answer

———————————————— Happy Learning —————————————————–