-
Notifications
You must be signed in to change notification settings - Fork 0
Python Basics
Welcome to the Python One-Shot for Beginners 2025! In this section, we’ll walk you through the fundamental concepts of Python, which are essential for building any program. By the end of this section, you’ll be able to:
- Understand variables and data types.
- Use operators to perform basic calculations.
- Take user input to create interactive programs.
- Work through some common mistakes and Python best practices.
A variable is like a box that holds data. The name of the box (the variable name) is used to refer to the data inside it. You don’t need to specify the data type when you create a variable in Python; Python will determine the type for you based on the data.
name = "Alice" # String
age = 25 # Integer
height = 5.4 # Float
is_student = True # Boolean
Variable names cannot:
- Start with a number (e.g.,
2name
is invalid). - Have spaces (e.g.,
user name
is invalid). - Contain special characters (e.g.,
user@name
is invalid).
Instead, use underscores for spaces (e.g., user_name
).
In Python, data types refer to the type of data a variable holds. The main data types are:
-
String: A sequence of characters, like
"Alice"
. -
Integer: Whole numbers, like
25
. -
Float: Numbers with decimals, like
5.4
. -
Boolean:
True
orFalse
.
favorite_food = "Pizza" # String
current_year = 2025 # Integer
gpa = 3.8 # Float
is_student = True # Boolean
Operators allow you to perform mathematical operations and combine values. Let’s look at some basic operators:
- + : Addition
- - : Subtraction
- * : Multiplication
- / : Division (float)
- // : Floor Division (integer result)
- % : Modulus (remainder)
- ** : Exponentiation (power)
a = 10
b = 3
print("Addition:", a + b)
print("Subtraction:", a - b)
print("Multiplication:", a * b)
print("Division:", a / b)
print("Floor Division:", a // b)
print("Modulus:", a % b)
print("Exponentiation:", a ** b)
- / will always return a float result, even when dividing integers.
- // performs floor division, rounding down to the nearest whole number.
In Python, you can create interactive programs that ask the user for input using the input()
function.
name = input("What is your name? ")
age = input("How old are you? ")
print("Hello,", name + "! You are", age, "years old.")
The input()
function always returns string data. If you want to use the input as a number, like in mathematical operations, you need to convert it.
For example:
num = int(input("Enter a number: ")) # Convert input to integer
print(num + 5) # Now this works
Let’s put everything we’ve learned so far into action by building a Number Guessing Game. In this game, the program will ask the user to guess a number between 1 and 10. If the guess is correct, the user wins!
secret_number = 7
guess = int(input("Guess a number between 1 and 10: "))
if guess == secret_number:
print("Congratulations! You guessed it right!")
else:
print("Oops! The correct number was", secret_number)
If you want to make the game more fun, you can allow users to guess multiple times. To do this, we will use loops (which we’ll cover in the next section).
-
Variable Naming Issues: Always avoid starting variable names with numbers, using spaces, or including special characters like
@
. Use underscores instead. -
Type Errors: Remember that input() returns a string. If you want to do mathematical operations, convert the input using
int()
orfloat()
. -
Division Confusion: Understand the difference between regular division (
/
) and floor division (//
). The former always returns a float, while the latter returns an integer.
- Variables store data that can be used in your programs.
- Data Types include strings, integers, floats, and booleans.
- Operators let you perform calculations, like addition, multiplication, and division.
- User Input allows interaction with your program, but remember to convert the data type when necessary.
- Common Pitfalls to watch out for: variable names, type errors, and understanding how division works.
Great job on completing the basics! In the next section, we’ll introduce Control Flow—how to make decisions using if
statements and how to repeat actions with loops. Stay tuned for more!
This article serves as a great reference to complement your Python One-Shot for Beginners video and provide an extra resource for beginners to follow along at their own pace.
© TechShade | 2025