Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for I Love Python! by jcook00
def i_love_python():
""" I love Python for the following reasons:
Nice libs for for image processing, math, natural language processing, or web scraping.
Also, some cool Shorties like list comprehensions, lambda functions.
"""
return "I love Python!"
if __name__ == '__main__':
#These "asserts" using only for self-checking and not necessary for auto-testing
assert i_love_python() == "I love Python!"
Feb. 5, 2015