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 kdim
def i_love_python():
"""
a lot of information available on the Internet
there are resources for training and simulators
easy to learn
the child learns python at school, and then me ;-)
you get beautiful constructions in the code
I can write scripts for automation and monitoring
I return to my childhood and solve easy problems online :-)
"""
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: