Skip to main content

Command Palette

Search for a command to run...

Python for Beginners: Part 2 - Understanding Variables

...and Building Your First Program

Published
3 min read
Python for Beginners: Part 2 - Understanding Variables

Welcome back! Today, we're going to take our first step in programming by exploring variables. Our goal is to familiarize ourselves with them and learn how to use them in our code. Then, we'll build a program to see how variables work in practice.

Understanding Variables

Imagine variables as containers that hold different things. They can store numbers, names, or any other information you can think of. Each variable has a unique name, like a label on a box. Let's explore some real-world examples to better understand variables:

  1. Age: Think of a variable called "age" that stores your age. For example, if you're 10 years old, you can assign the value 10 to the variable "age." Later, you can update it as you grow older.

  2. Favorite Color: Imagine having a variable called "favorite_color" that stores your favorite color. You can assign the value "blue" to it and change it whenever your preferences change.

Building Our First Python Program

Now, let's dive into Python coding and build a simple program that uses variables. Follow these steps:

  1. Open your preferred Python development environment (e.g., Thonny, Mu, or any text editor).

  2. Create a new Python file and save it with a meaningful name, such as "my_first_program.py".

  3. In your Python file, write the following code:

# Creating variables
name = "Alice"
age = 12
favorite_color = "blue"

# Displaying information
print("My name is", name)
print("I am", age, "years old")
print("My favorite color is", favorite_color)
  1. Save the file and run the program. You should see the output displaying your information.

Explanation of the Code

  • The lines starting with a "#" symbol are comments. They provide information about the code but are ignored by the computer.

  • We create three variables: "name," "age," and "favorite_color." We assign values to them using the "=" sign.

  • The "print" function is used to display information on the screen. We use it to print our name, age, and favorite color, along with some additional text.

Let's Break It Down

  • In the first line, name = "Alice", we create a variable called "name" and assign the value "Alice" to it. You can replace "Alice" with your name.

  • The second line, age = 12, creates a variable called "age" and assigns the value 12 to it. You can change the value to your age.

  • Similarly, the third line, favorite_color = "blue", creates a variable called "favorite_color" and assigns the value "blue" to it. You can replace "blue" with your favorite color.

  • Finally, the print statements display the stored information on the screen. You can add or modify the print statements to show additional information.

Conclusion

Congratulations! You've just built your first Python program using variables. You've learned that variables are like containers that store different types of information. They help us keep track of things in our programs.

In the next post, we'll explore different data types in Python, such as numbers and text. Get ready to expand your coding skills even further!

Python

Part 7 of 8

Python for Beginners to Advanced: Learn the fundamentals of Python programming to an advanced level in this comprehensive guide.

Up next

Python for Beginners: Part 1 - Installation Guide

Installing on Windows, Linux, Mac, and Raspberry Pi

More from this blog

M

Matthew Hard

58 posts