Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
except me in the lie solution in Creative category for I Love Python! by gyahun_dash
def i_hate(language):
if language == 'Python':
raise MemoryError(language)
else:
return 'I hate {}!'.format(language)
def i_love_python():
try:
return i_hate('Python')
except MemoryError as me:
return 'I love {}!'.format(me.args[0])
Aug. 21, 2014
Comments: