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 new_hoschi
def i_love_python():
"""
Python understands me. I write code no one else could ever understand, but
Python still tries and interpretes it its way. Python is only sometimes
trolling me and pointing at my mistakes in a very polite way. It is a
trendsetter and updates itself while never forgetting its roots.
Python you're the best. ;)
"""
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!"
April 24, 2020
Comments: