DEV Community

Cover image for Getting Started with Python: A Practical Introduction for Beginners
Jason Ndalamia
Jason Ndalamia

Posted on

Getting Started with Python: A Practical Introduction for Beginners

Welcome to the world of Python! If you are just starting your programming journey, you have chosen the perfect language. This beginner-friendly guide will teach you the fundamentals of Python in a simple, practical, and engaging way.


1. Introduction

What is Python? Python is a powerful, flexible, and dynamically typed programming language created by Guido van Rossum and first released in 1991. It is widely considered one of the most loved and used programming languages in the world.

Why is it Popular? Imagine you are cooking: would you rather follow a long, complex recipe full of jargon, or a simple one written in plain English? Python is designed to be highly readable, looking almost like spoken English rather than complex machine code. It allows you to write fewer lines of code to achieve the same result as other languages, like Java.

Python is highly versatile and serves as a "multi-tool" for a wide range of real-world scenarios. It is used for web development (powering apps like Instagram and YouTube), data analysis, AI, machine learning, and system scripting (automating repetitive computer tasks). It has even been used by NASA for rocket logic!


2. Installation

Before writing code, you need to set up Python on your computer.

Step-by-Step Guide:

  1. Download Python: For Windows users, you can safely download the latest version (like Python 3.12) directly from the Microsoft Store. (Note: You can also download it from the official website at (https://www.python.org/downloads/), which is standard industry practice, though not explicitly linked in the provided sources. Please independently verify this URL.

  2. Install: Run the downloaded installer. It is critical during this step to ensure Python is added to your system's "PATH" environment variable, which allows your system to recognize Python commands in your terminal.

Verify Installation: Once installed, open your Command Prompt (CMD) or terminal. Type the following command and press Enter to verify your installation:
python --version
(Note for Mac and Linux users: You may need to use python3 --version.)


3. Your First Program: Hello World

In Python, writing your first program is incredibly simple and avoids confusing symbols or extra fluff. Let's write a program that displays a message on the screen.
print("Hello, World!")

What the code does: Think of the print() command as a megaphone. You are giving Python a clear, direct instruction: "Hey, shout this message on the screen!". Because Python is an interpreted language, it runs your code line by line and immediately outputs the result.


4. Comments in Python

Comments are notes left in the code for humans to read. Python ignores them when running the program, but they are crucial for explaining what your logic does.

Single-Line Comments: You can create a single-line comment by using the hash symbol #. As a best practice, try to keep your comment lines from exceeding 72 characters.

# This line is ignored by Python
print("Hello!")  # You can also place comments after code
Enter fullscreen mode Exit fullscreen mode

Multi-Line Comments: For longer explanations, you can use triple quotes (""") to create a multi-line string, which Python treats as a multi-line comment when not assigned to a variable.

"""
This is a
multi-line comment.
It is great for long explanations!
"""
Enter fullscreen mode Exit fullscreen mode

5. Variables

Imagine your brain is a giant notebook; when you learn something new, you store it under a label. In Python, variables act as labelled boxes or containers where you store data to open and use later.

Rules for Naming Variables:

  • Must start with a letter (a–z, A–Z) or an underscore _ (e.g., _my_age).
  • Cannot start with a number (e.g., 1user is invalid).
  • Can only contain alphanumeric characters and underscores.
  • Names are case-sensitive (name and NAME are completely different).
  • Tip: Use descriptive names in snake_case (e.g., user_name instead of just x).

Examples of Different Data Types: Because Python is dynamically typed, you don't need to specify the data type—Python figures it out automatically based on the value you assign.

Integer (int) - Whole numbers like counting apples
age = 25

Float (float) - Decimal numbers like measuring height
height = 5.9

String (str) - Text enclosed in single or double quotes
name = "Alice"

Boolean (bool) - True or False values, like a light switch (ON/OFF)
is_logged_in = True


6. Operators

Operators allow you to perform calculations or compare data in Python.
Arithmetic Operators: Used to perform standard mathematical calculations.

a = 10
b = 3
print(a + b)   # Addition: outputs 13
print(a - b)   # Subtraction: outputs 7
print(a * b)   # Multiplication: outputs 30
print(a / b)   # Division: outputs 3.333...
Enter fullscreen mode Exit fullscreen mode

Comparison Operators: Used to compare two values. They act as "Yes/No" questions and always result in a Boolean (True or False).

x = 10
y = 9
print(x > y)   # Greater than: True
print(x == y)  # Equal to: False
print(x != y)  # Not equal to: True
Enter fullscreen mode Exit fullscreen mode

Logical Operators: Used to check multiple conditions at once using and and or.

age = 20
has_ticket = True`
# 'and' means both conditions MUST be True`
if age >= 18 and has_ticket:
    print("Entry allowed.")
else:
    print("Entry denied.")
Enter fullscreen mode Exit fullscreen mode

Conclusion

You've just taken your first steps into Python! We covered how Python's readable syntax makes programming feel like writing English, how to install and run your first "Hello, World!" program, and how to use foundational concepts like variables, data types, and operators.

Top comments (0)