Author: adminuser
-
Python Tutorial Series – Comments
Comments are used to make notes in source code about what a piece of code does or to not include executable lines of code when the application is run. Comments are created in Python by adding a hash tag symbol in front of the code to exclude. Example: # This is a comment. There is…
-
Python Tutorial Series – IDE
Python source files end in .py. Python source files can be written in a simple text editor. Python comes installed with a tool called IDLE, Integrated Development and Learning Environment. It is an editor with a shell window. It also has a debugger. A popular alternative is Anaconda. Anaconda is a huge all in one…
-
Python Tutorial Series – Set Up
I’m working on learning Python, so in the process of doing that, I thought I’d put together a series of Python tutorial blog posts. Python is supposed to be easy to learn, so we’ll see. In order to use Python on your local machine, it needs to be downloaded from here. There are 2 major…