Training Kim
It's kinda like driving Ms. Daisy with python
So you want to learn python? Do you know where the name python comes from? Well sit down in that chair right there and let me tell you how that happened.
You see the creator of the python programming language didn't have an affinity for snakes, no he was a huge fan of Monty Python, and that's why the language you know and love so much is named python.
What is python
python is a high-level interpreted programming language. What does that mean? python code is compiled at run time by the python interpreter, unlike C++ or rust or other compiled languages which you must compile the code prior to running. It is popularized by it's prevelance in various applications like web development, data analysis, artificial intelligence, automation, and many others.
python code is very human readable, looking more like natural language than computer code. This makes it much easier to learn and much more fun (read funner) to code.
Hello, world
Starting with the infamious Hello, world! program is very easy in python, it is a simple one line program.
print("Hello, world!")
Running this code with the python interpreter will yield what you might expect.
$ python hello.py
Hello, world!
This page is a work in progress. I'll add to it as time permits. Should you have any suggestions or requests please send them my way.
About the author
My name: well you know, it's me; Mike
- follow me on X @jericho_wc
- mike-w-wilcox@outlook.com
Wondering how this page was created? It's called markdown and is my preferred documentation type. You can learn about it in the Markdown Guide