Objective:
Learn how to display output in Python using the print() function.
Exercise:
Write a program that prints your full name on the screen.
Objective:
Understand user input (input()), type conversion, and basic arithmetic.
Exercise:
Ask the user for two numbers and print their sum.
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.
Objective:
Work with conditions and comparisons.
Exercise:
Ask the user for their age and print whether they are a child, teenager, adult, or senior.
Objective:
Introduce loops (for) and repeated operations.
Exercise:
Ask the user for a number and print its multiplication table from 1 to 10.
Objective:
Learn how to create and manipulate lists.
Exercise:
Create a list of five favorite foods and print each one using a loop.
Objective:
Practice string operations and the len() function.
Exercise:
Ask the user for a word and print how many characters it contains.
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”.
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.
CarObjective:
Introduce basic Object-Oriented Programming (OOP).
Exercise:
Write a class Car with attributes brand and model, then create an instance and print its information.