Good day everyone, I need to print data using if-elif statement. I when I run this code like this, everything went well
if row['username'] == 'mutago':
print " okay"
sys.exit(0)
else:
print "wrong"
OKAY now i want to include elseif statement to print another data but it returns error. below is the error code
if row['username'] == 'mutago':
print " okay"
sys.exit(0)
elif row['password']=='muta55':
print "good"
else:
print "wrong"
i have tried also elseif but does not work