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 tntC4stl3
def i_love_python():
"""
Let's explain why do we love Python.
"""
essay = """I love Python because it's really easy to learn, you can learn
Python in few days then write a tool to solve specific problems like craw
web site, download pictures and so on. And with the benifit of some Python
web framework like Django, Flask and webpy, people can easily write a
personal website.
The layout of python code is awesome, it's easy to read, and because it do
not need to compile, you can write code even in a simple text editor!"""
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!"
April 7, 2015