I've written the following code and if the else statement is true I would like the program to shutdown. I'm new to python and having some trouble
password = raw_input('Enter yes to continue:')
if password == 'yes':
print'You have chosen to continue'
else:
print'You have chosen to exit'