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 MSL
def i_love_python():
"""
I used to work with JavaScript and all frontend stuff, my life was full of pain, because of what community calls "JavaScript WTF". One day i thought to myself:
"Do I really want to continue doing what I do? Or should I try something new in my programmer's life? That's how I started learning python and I'm in love
with its syntax, built-ins and community. There's no way back, I love you, Python!
"""
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, 2019