Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
A small time academics view solution in Clear category for I Love Python! by MrCactus753
def i_love_python():
"""
Why I love Python
To be honest, I'm not the best programmer out there (by far) and my speciality lies elsewhere entirely.
However, being interested in technology and wanting to learn more about programming, this language has enabeled me to do so much.
At first, I used it to create small functions like dice-apps for my DnD-games which merged into interactive Character sheets. Over time I also managed to utilize
aspects like webscraping and large scale data analysis for my academic advancement, I even managed to completely automate a large part of my data gathering by simply
using my collection app in conjunction with a raspberry pi and a task scheduler.
I still have a long way to go as a programmer and I'm not able to invest as much time into programming as I would like; however Python has become a part of my life
that I would not like to miss for the world. It has helped me do so much in the past, and I'm sure It'll help me even more in the future.
And in short, 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!"
April 25, 2020
Comments: