Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
I Love Python solution in Clear category for I Love Python! by Klotho
def i_love_python():
"""
Python is simple and easy to use that's why it's so popular. People love easy and clear things.
Besides all it's a very powerfull tool. You can create helpfull tools. No need to worry about syntax
and compilers errors just focus on your algorithm and this is the best part of Python. Ps: Sorry for bad english.
"""
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. 26, 2016