Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
the MaxRake.com way solution in Clear category for I Love Python! by maxrake
def i_love_python():
"""
Let's explain why do we love Python.
I love Python because I can write quick scripts that would be 4-10 times
the size in C/C++. I love that there is a Zen of Python (import this) and
that the pythonic way of doing things is so elegant and simple. I love
that the coding in Python is very efficient with my time and is getting
more efficient with the computer's time with every new version. It just
make sense to me.
"""
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!"
July 15, 2015