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 MuscialCoder
def i_love_python():
"""
Let's explain why do we love Python.
Having been a programmer for multiple decades - I'd heard a lot about python,
but never made the leap to start in it...
I must say that now I have, I wish I had done so earlier...
The ease in which many things are done is simply amazing!
And the speed in which I've learned things is really a statement to the
language in how easy it is to pick up!
"""
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!"
Sept. 28, 2016