In [1]:
#if elif else statements
loc = 'bank'
if loc == 'auto shop':
print 'welcome to the auto shop'
elif loc == 'bank':
print 'welcome to the bank'
else:
print 'where are you'
In [ ]: