All pastes #2049567 Raw Edit

Anonymous

public text v1 · immutable
#2049567 ·published 2011-04-23 03:09 UTC
rendered paste body
answer = raw_input('Would you like to make a shopping list? ')
if answer=="y" or answer=="yes" or answer=="sure" or answer=="okay":
	print '\a'
	print '\n' * 25
elif answer=="n" or answer=="no":
	a = 'fine!'
	print a.upper()
	exit()
else:
	print 'Invalid command!'
	exit()
print '\n'
x = raw_input('How many items? ')
exit()