Why a Program Editor There are almost as many program editors written as there are programmers. All have their adherents, some of whom defend their choices with religious zeal. So, granting everyone their right to their own opinions, I will here suggest that the Atom program editor (atom.io) is an excellent choice for a beginning… Continue reading Installing the Atom Program Editor
Tag: python
Installing Python 3 on a Mac
Python is a very popular interpretive language for computers. Interpreted means that programs written in Python are generally not compiled, but rather are converted to machine language a line at a time on the fly, each time they are run. This has the advantage of avoiding the sometimes long and confusing process of compiling an… Continue reading Installing Python 3 on a Mac