Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First. Actually not, C was my First :'( solution in Clear category for I Love Python! by oLeBeLo
def i_love_python():
"""
I find it highly flexible in exchange of some performance but i loved it
from the start exactly for that: all the different ways of thinking
Python was putting in my head because of this flexibility.
I love programming in all other languages as most of them limit you
to a constrict set of choices within the boundaries of the language.
And that's puzzling and fun to find solutions.
But Python is the opposite. The framework and set of choices is not limiting
...it pulls creativity and stretches the horizon of choices. I found it
way more fun to play with and solve a problem in 100 different ways.
Mainly thanks to checkio and all Creative users. I gotta thank you guys ;)
"""
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!"
Dec. 28, 2019