Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
fun, easy, powerful solution in Clear category for I Love Python! by kameranis
def i_love_python():
"""
I love python for its simplicity. I love python for its complexity.
it is the easiest language to write in, yet has so many libraries and functions that
nothing seems to be difficult or to need more than a few lines to solve.
you can do anything in python easily. The noto of our age is "There's an app for that".
In programming "There's a python library for that, be it mail sending, signal analysis, plotting,
server management or anything else you can imagine.
Programming languages are classified mainly in imperative, object-oriented, scripting, functional, logical.
Python is all of these except logical. You can write code in any style you want and it python will work with you
Because of the importance of indentation there is no such thing as an unreadable python program.
Having seen freshman C code, I must say that being forced to write organised is a big plus.
Python is fun, is easy, is powerful
That's why I love 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!"
Aug. 30, 2014