Session 1.1 Basic Mathematical Calculation

 #%% additon ,substraction multiplication division etc cna be easily done in python

3+4+5

3*4*5

3/4

4/3

4-5

5-4


#%%


a=3

b=5

c=10


answer = a+b+c

print(answer)


answer = a*b

print(answer)


answer = a/b

print(answer)



answer = a-b

print(answer)


Comments