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 reggiec
def i_love_python():
"""
I love Python because as a someone learning a first language, it's easy for me to read and follow. At the same time,
I've seen videos of Python doing very tasks, so it's also very powerful.
There is ton's of community support, so it's always easy to find answers.
Finally, it runs on everything. I currently have on my Windows desktop PC, my laptop running Linux, My iMac, and my Nexus 7 tablet.
I could go on, but these are some of the reasons 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!"
Nov. 6, 2014