MATH 253 Python Commands

Information on Python

**Last updated 1/17/21 (Subfolders may have been updated more recently.)

Python is a programming language. We will largely be using Google's CoLaboratory, a collaborative Python environment, and I will share assignment files with you as needed.

Fortunately for us, we don't have to begin the programming from scratch; there are a number of useful commands built in, and there are also a lot of command libraries that others have written (and we can use!).

Two major packages of commands are numpy and sympy. These can be loaded via "import numpy" and "import sympy" respectively (without the quotes). Most of the commands we will need are in these two packages, although the "math" package will also be useful. There are other ways to go about this, as well, and there are some subtleties that may crop up from time to time, but this is a good start. Some find it useful to "import numpy as np" so that they when they need to refer to the numpy package (which comes up often), there is less to type.

Rather than attempt a Python tutorial here, I will offer some of the basic things that we will find useful so that you can search for how to implement them.

That's it for now. I will try to add to this as we encounter more things we need.

Classroom Demos

Home