Python is a powerful, beginner-friendly programming language used in everything...
Python Basics: Learn Variables, Print, and If Statements

Python Basics: Variables and Data Types
Ever wonder how computers remember information? In Python, we use variables to store data. Think of variables as labeled containers that hold different types of information you can use later in your code.
Python has six basic data types you'll use all the time. Integers are whole numbers like 5 or -12, while floats are decimal values like 3.14 or -2.5. Strings hold text inside quotes like "Hello World!", and booleans are simply True or False values used for yes/no situations. For collections of data, you can use lists which hold multiple items in order, or dictionaries that store information in key-value pairs.
Creating a variable in Python is super straightforward - just give it a name, use the equals sign, and provide a value:
name = "John"
age = 25
Pro Tip: Choose descriptive variable names that help you remember what they contain. Good names make your code easier to understand when you come back to it later!

Print Statements and If Conditions
Want to see results from your code? The print() function displays information on your screen. It's like telling Python to show you what's happening inside your program:
print("Hello World!")
print(3.14)
Making decisions is a key part of programming, and that's where if statements come in. They let your program check conditions and do different things based on whether those conditions are true or false:
if age >= 18: # condition
print("Hello,", name)
print("You are an adult.")
else: # otherwise
print("Hello,", name)
print("You are a minor.")
You can handle multiple conditions by adding elif (short for "else if") between your if and else statements. This creates a chain of checks that makes your program even smarter about how it responds to different situations.
Remember: Indentation matters in Python! The indented lines after an if statement are what runs when the condition is true, so be careful with your spacing.
We thought you’d never ask...
Similar Content
Most popular content in Fun Stuff
8DMV Practice Test 1
First set of Questions from DMV Handbook
Anatomy and Physiology Chapter 1
Chpater 1 : The orientation of the body / College Level Anatomy and Physiology
Practice: Languages of Common Signs
Practice quiz on languages of common (road) signs
Unit 2 Lesson 2: Alphabet of Lines
An overview of the different types of lines used in drafting
🌈 LGBTQ+ Pride Flags: Context & Symbolism
Use this Know as a quick reference to identify all of the different Pride flags and learn about their context & symbolism
Neuroanatomy
Intro to Human Communication and Science Disorders
School Law
Notes on school law chapter 8 intro to education
Roles in Criminal Justice
These are my notes for different roles in criminal justice from my Criminal Justice 1 class.
Most popular content
9FAR NOTES- CPM
Compiled by CPM
Newton's Second Law of Motion
A detailed explanation of Concept of Newton's Second Law of Motion, Examples, Formulas, and Sample Problems with solution.
FAR NOTES-HERCULES
LAST MINUTE NOTES BY HERCULES CPA
FAR NOTES - KUYA WOWOWIE
Far notes by Kuya Wowowie
Introduction to linguistics
Introduction to linguistics exam revision notes. Structure of language, typologies of language, parts of speech, language families, Chomsky, Hockett, semantic triangle, Prague Linguistic Circle, writing systems, acquisition and learning
RFBT NOTES- HERCULES
LAST MINUTE NOTES BY HERCULES CPA
DMV Practice Test 1
First set of Questions from DMV Handbook
AFAR NOTES- CPM
Compiled by CPM
Translational Motion and Rotational Motion
Applications of Translational and Rotational Motion
Students love us — and so will you.
The app is very easy to use and well designed. I have found everything I was looking for so far and have been able to learn a lot from the presentations! I will definitely use the app for a class assignment! And of course it also helps a lot as an inspiration.
This app is really great. There are so many study notes and help [...]. My problem subject is French, for example, and the app has so many options for help. Thanks to this app, I have improved my French. I would recommend it to anyone.
Wow, I am really amazed. I just tried the app because I've seen it advertised many times and was absolutely stunned. This app is THE HELP you want for school and above all, it offers so many things, such as workouts and fact sheets, which have been VERY helpful to me personally.
Python Basics: Learn Variables, Print, and If Statements
Python is a powerful, beginner-friendly programming language used in everything from machine learning to web development. Created in the late 1980s by Guido Van Rossum, Python is loved for its simple, readable syntax that makes coding accessible even if you're...

Python Basics: Variables and Data Types
Ever wonder how computers remember information? In Python, we use variables to store data. Think of variables as labeled containers that hold different types of information you can use later in your code.
Python has six basic data types you'll use all the time. Integers are whole numbers like 5 or -12, while floats are decimal values like 3.14 or -2.5. Strings hold text inside quotes like "Hello World!", and booleans are simply True or False values used for yes/no situations. For collections of data, you can use lists which hold multiple items in order, or dictionaries that store information in key-value pairs.
Creating a variable in Python is super straightforward - just give it a name, use the equals sign, and provide a value:
name = "John"
age = 25
Pro Tip: Choose descriptive variable names that help you remember what they contain. Good names make your code easier to understand when you come back to it later!

Print Statements and If Conditions
Want to see results from your code? The print() function displays information on your screen. It's like telling Python to show you what's happening inside your program:
print("Hello World!")
print(3.14)
Making decisions is a key part of programming, and that's where if statements come in. They let your program check conditions and do different things based on whether those conditions are true or false:
if age >= 18: # condition
print("Hello,", name)
print("You are an adult.")
else: # otherwise
print("Hello,", name)
print("You are a minor.")
You can handle multiple conditions by adding elif (short for "else if") between your if and else statements. This creates a chain of checks that makes your program even smarter about how it responds to different situations.
Remember: Indentation matters in Python! The indented lines after an if statement are what runs when the condition is true, so be careful with your spacing.
We thought you’d never ask...
Similar Content
Most popular content in Fun Stuff
8DMV Practice Test 1
First set of Questions from DMV Handbook
Anatomy and Physiology Chapter 1
Chpater 1 : The orientation of the body / College Level Anatomy and Physiology
Practice: Languages of Common Signs
Practice quiz on languages of common (road) signs
Unit 2 Lesson 2: Alphabet of Lines
An overview of the different types of lines used in drafting
🌈 LGBTQ+ Pride Flags: Context & Symbolism
Use this Know as a quick reference to identify all of the different Pride flags and learn about their context & symbolism
Neuroanatomy
Intro to Human Communication and Science Disorders
School Law
Notes on school law chapter 8 intro to education
Roles in Criminal Justice
These are my notes for different roles in criminal justice from my Criminal Justice 1 class.
Most popular content
9FAR NOTES- CPM
Compiled by CPM
Newton's Second Law of Motion
A detailed explanation of Concept of Newton's Second Law of Motion, Examples, Formulas, and Sample Problems with solution.
FAR NOTES-HERCULES
LAST MINUTE NOTES BY HERCULES CPA
FAR NOTES - KUYA WOWOWIE
Far notes by Kuya Wowowie
Introduction to linguistics
Introduction to linguistics exam revision notes. Structure of language, typologies of language, parts of speech, language families, Chomsky, Hockett, semantic triangle, Prague Linguistic Circle, writing systems, acquisition and learning
RFBT NOTES- HERCULES
LAST MINUTE NOTES BY HERCULES CPA
DMV Practice Test 1
First set of Questions from DMV Handbook
AFAR NOTES- CPM
Compiled by CPM
Translational Motion and Rotational Motion
Applications of Translational and Rotational Motion
Students love us — and so will you.
The app is very easy to use and well designed. I have found everything I was looking for so far and have been able to learn a lot from the presentations! I will definitely use the app for a class assignment! And of course it also helps a lot as an inspiration.
This app is really great. There are so many study notes and help [...]. My problem subject is French, for example, and the app has so many options for help. Thanks to this app, I have improved my French. I would recommend it to anyone.
Wow, I am really amazed. I just tried the app because I've seen it advertised many times and was absolutely stunned. This app is THE HELP you want for school and above all, it offers so many things, such as workouts and fact sheets, which have been VERY helpful to me personally.