Operators in Python
Master Python with 70+ Hands-on Projects and Get Job-ready - Learn Python
Program 1
# + - * ** / // %
#a=50
#b=5
#print(a-b)
#a=20.5
#b=10.4
#print(a-b)
#print(5*3)
#print("Data Flair "*5)
#a=5
#b=3
#print(a**b)
#a=15/2
#print(a)
a=10//2
print(a)
a=10%2
print(a)
We work very hard to provide you quality material
Could you take 15 seconds and share your happy experience on Google

