Python is a powerful, beginner-friendly programming language used in everything... Show more
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...
What is the Knowunity AI companion?
Our AI companion is specifically built for the needs of students. Based on the millions of content pieces we have on the platform we can provide truly meaningful and relevant answers to students. But its not only about answers, the companion is even more about guiding students through their daily learning challenges, with personalised study plans, quizzes or content pieces in the chat and 100% personalisation based on the students skills and developments.
Where can I download the Knowunity app?
You can download the app in the Google Play Store and in the Apple App Store.
Is Knowunity really free of charge?
That's right! Enjoy free access to study content, connect with fellow students, and get instant help – all at your fingertips.
Most popular content in Fun Stuff
9Most popular content
9Can't find what you're looking for? Explore other subjects.
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... Show more

Sign up to see the content. It's free!
- Access to all documents
- Improve your grades
- Join milions of students
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!

Sign up to see the content. It's free!
- Access to all documents
- Improve your grades
- Join milions of students
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...
What is the Knowunity AI companion?
Our AI companion is specifically built for the needs of students. Based on the millions of content pieces we have on the platform we can provide truly meaningful and relevant answers to students. But its not only about answers, the companion is even more about guiding students through their daily learning challenges, with personalised study plans, quizzes or content pieces in the chat and 100% personalisation based on the students skills and developments.
Where can I download the Knowunity app?
You can download the app in the Google Play Store and in the Apple App Store.
Is Knowunity really free of charge?
That's right! Enjoy free access to study content, connect with fellow students, and get instant help – all at your fingertips.
Most popular content in Fun Stuff
9Most popular content
9Can't find what you're looking for? Explore other subjects.
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.