Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Python is my first language solution in Uncategorized category for I Love Python! by Anja_Romashova
def i_love_python():
"""
Well...I cannot express my thoughts perfectly, but I will try.
Firstly, Python is my first (not couning Pascal at school) and my
favorite language. Someone might say, "Hey, you haven't even tried to
learn C or Java or something else. How can you say that?" and ...
They are right. But I decided to program in exactly Python because of its
popularity (now I undrstand it) and I keep doing it as you can see :)
This means that Python is a really good tool and for beginners too.
Secondly, I've already tried creating some
games, started learning physics and mathematics. And.. Maybe, if I selected
another language, I would not go so far.
Thank you, if you read up it to this point. If you notice mistakes,
please write them in the comments (I'm not a native speaker).
"""
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!"
Aug. 4, 2020