Tag: atom

Write your first Python program

In the last post, we ran some very basic python code directly in a python interactive session. But what would a more realistic example of python code look like? To make our lives easier, the most basic thing we need is a text editor (not a word processor). This will allow us to write and save python code as a file with a .py file extension (e.g. example_script.py). (Read More)