switch_blue = False
switch_red = False
if switch_blue :
print('My name is Amita')
elif switch_red :
print ('My name is Tej')
else: print('My name is Rudra')
# else if with operator
colour_red = True
colour_blue = True
if colour_red and colour_blue :
print ('Rudra is lovely child')