Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
I love Python! My first programming language. solution in Clear category for I Love Python! by cnkisk
def i_love_python():
"""
Python is high-level programming language.
So we can write shorter, readable code.
I especially like the:
"for element in list:"
Moreover, Python is popular language enough to find explanations.
They help us to develop our skill.
I'll have to study some other languages to compare with Python, though.
"""
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!"
Jan. 25, 2021
Comments: