1. Print Your Name

Objective:
Learn how to display output in Python using the print() function.

Exercise:
Write a program that prints your full name on the screen.

2. Simple Calculator (Addition)

Objective:
Understand user input (input()), type conversion, and basic arithmetic.

Exercise:
Ask the user for two numbers and print their sum.

3. Even or Odd Checker

Objective:
Practice conditional statements (if/else) and modulus operator %.

Exercise:
Write a program that checks whether a number entered by the user is even or odd.

4. Age Category Program

Objective:
Work with conditions and comparisons.

Exercise:
Ask the user for their age and print whether they are a child, teenager, adult, or senior.

5. Multiplication Table

Objective:
Introduce loops (for) and repeated operations.

Exercise:
Ask the user for a number and print its multiplication table from 1 to 10.

6. List of Favorite Foods

Objective:
Learn how to create and manipulate lists.

Exercise:
Create a list of five favorite foods and print each one using a loop.

7. Word Counter

Objective:
Practice string operations and the len() function.

Exercise:
Ask the user for a word and print how many characters it contains.

8. Simple Login System

Objective:
Combine variables, conditions, and user input.

Exercise:
Create a program that asks for a username and password.
If they match predefined values, print “Login successful”.

9. Sum of Numbers in a List

Objective:
Work with loops and list traversal.

Exercise:
Given a list like [1, 2, 3, 4, 5], write a program that calculates and prints the sum of all elements.

10. Create a Class Car

Objective:
Introduce basic Object-Oriented Programming (OOP).

Exercise:
Write a class Car with attributes brand and model, then create an instance and print its information.