Python Tutorials

Overview

Python allows you to assign values to multiple variables in one line or the same value to multiple variables in one line.

Many Values to Multiple Variables

In the following, the values of x, y, and z are all set in the same line of code.

x, y, z = "Ferrari", "Maserati", "Alfa Romeo"

Note

The number of values must match the number of variables or an error will occur.

One Value to Multiple Variables

In the following, x, y, and z will all have the value “monkeys”.

x = y = z = "monkeys"

Unpacking a Collection

If you have a collection of values in a list, tuple etc., Python allows you to extract the values into variables. This is called unpacking.

cars = ["Ferrari", "Maserati", "Alfa Romeo"]
x, y, z = cars

Python Notes:

  • The most recent major version of Python is Python 3; however, Python 2 is still in use and quite popular, although not being updated with anything other than security updates
  • Python uses new lines to complete a command, as opposed to other programming languages which often use semicolons or parentheses
  • Python relies on indentation, using whitespace to define scope, such as the scope of loops, functions, and classes; other programming languages often use curly-brackets for this purpose
  • Python string methods return new values, and DO NOT change the original string

We’d like to acknowledge that we learned a great deal of our coding from W3Schools and TutorialsPoint, borrowing heavily from their teaching process and excellent code examples. We highly recommend both sites to deepen your experience, and further your coding journey. We’re just hitting the basics here at 1SMARTchicken.