Skip to content

Python Basics

Shaswat Raj edited this page Dec 17, 2024 · 1 revision

Python One-Shot for Beginners 2025: 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.

1. What Are Variables in Python?

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.

Example:

name = "Alice"   # String
age = 25         # Integer
height = 5.4     # Float
is_student = True  # Boolean

Quick Tip:

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).


2. Python Data Types

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 or False.

Example:

favorite_food = "Pizza"  # String
current_year = 2025      # Integer
gpa = 3.8               # Float
is_student = True        # Boolean

3. Python Operators: Performing Basic Calculations

Operators allow you to perform mathematical operations and combine values. Let’s look at some basic operators:

Arithmetic Operators:

  • + : Addition
  • - : Subtraction
  • * : Multiplication
  • / : Division (float)
  • // : Floor Division (integer result)
  • % : Modulus (remainder)
  • ** : Exponentiation (power)

Example:

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)

Common Pitfall: Division

  • / will always return a float result, even when dividing integers.
  • // performs floor division, rounding down to the nearest whole number.

4. Taking User Input

In Python, you can create interactive programs that ask the user for input using the input() function.

Example:

name = input("What is your name? ")
age = input("How old are you? ")

print("Hello,", name + "! You are", age, "years old.")

Pitfall: Input Always Returns a String

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

5. Mini Project: Guess the Number Game

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!

Code:

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)

Pro Tip:

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).


6. Common Mistakes and How to Avoid Them

  1. Variable Naming Issues: Always avoid starting variable names with numbers, using spaces, or including special characters like @. Use underscores instead.

  2. Type Errors: Remember that input() returns a string. If you want to do mathematical operations, convert the input using int() or float().

  3. Division Confusion: Understand the difference between regular division (/) and floor division (//). The former always returns a float, while the latter returns an integer.


7. Summary of Key Concepts

  • 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.

Next Steps: What’s Coming Up?

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.