MATH 249 Python Commands

Information on Python

**Last updated 2/17/20 (Subfolders may have been updated more recently.)

Here is our blank template for exams. Download it (right-click and save target) and save it in a folder you can access during exams.

We will be using Google Colaboratory for Python: Colaboratory.

Python is a programming language. 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.

Our Python info page is here . You may bring this to exams (but please don't write on it!).

MATH 249 Home

Home