Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Uncategorized category for I Love Python! by vanzaj
def i_love_python():
""" this is what you get when you misunderstand the task
"""
i, love, python = i_love_python.__name__.split('_')
return "{} {} {}!".format(i.capitalize(), love, python.capitalize())
if __name__ == '__main__':
#These "asserts" using only for self-checking and not necessary for auto-testing
assert i_love_python() == "I love Python!"
Aug. 24, 2014
Comments: