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 spyraklas1
def i_love_python():
"""
Coming from a beginner programmer's perspective:
I love Python because it is a simple enough programming language
that beginners can quickly get up and running with.
It allows for writing full, complicated programs, with very
simple building parts. It's also great for forgetting the
details, and focusing on the more important concepts
and ideas of computer science. (I've heard that other languages
such as C++/Java can get you lost very quickly.
While I don't fully know how Python compares to other programming
languages in other respects, I know that it is a wonderful
language that quickly and elegantly shows you the magic of
computers and of programming.
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!"
July 15, 2015