Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
ask myself solution in Uncategorized category for I Love Python! by gyahun_dash
def mymind(what = ''):
loves = dict(Python = 'love')
while True:
answer = 'I {} {}!'.format(loves.get(what, 'like'), what)
what = (yield answer)
def i_love_python(first = 'it'):
question = mymind(first)
Do_you_love_ = question.send
next(question)
return Do_you_love_('Python')
Aug. 20, 2014
Comments: