Introduction to Python (Pt. 1)

Welcome to the exciting world of Python!

Programming is a way to tell your computer how to perform tasks by giving it specific instructions.

A programming library is a collection of code that someone else has written, that you can then use (so you don't have to reinvent the wheel).

We'll learn more about advnaced AI libraries in Python later in the course. Scikit-Learn and TensorFlow are two of the most popular for programming AI and Machine learning programming.

Your First Line of Python

Now let's jump into some programming!

Basic Arithmetic Operations

Basic arithmetic operations are built into the Python langauge. Here are some examples. In particular, note that exponentiation is done with the ** operator.

Working with Lists

Lists are a versatile way of organizing your data in Python. Here are some examples.

List Methods

Here are some other common list methods.