IGNITIC_TECH
237 subscribers
38 photos
14 videos
33 links
Dive into daily AI, Tech, and programming insights, plus software development tips and tools.
๐Ÿ’ก Have questions? Ask ๐Ÿ‘‰ @ignitc
Download Telegram
Mini-Exercise for you guys

โœ๏ธ Task:

Create variables to store:

your name
your age
your height
whether you are a student

Then print them out.
Example:
name = "Marta"
age = 18
height = 1.65
is_student = True

print(name)
print(age)
print(height)
print(is_student)
๐Ÿ”ฅ4
Challenge
Create a Python script that introduces yourself using variables.
Did You guys pass the Challenge of Day 3?
if you guys are struggling on how to solve it refer to DAY 3 for additional information ๐Ÿ‘†
โœ…DAY 4
Python Operators & Basic Expressions
print("What Are Operators?")

Operators are symbols that tell Python to perform an action.
Example:
a = 10
b = 5
print(a + b)


Arithmetic Operators
Used for math operations:
+ โ€”โ€”โ€”> Addition โ€”โ€”> 5 + 2
- โ€”โ€”โ€”> Subtraction โ€”-> 5-2
* โ€”โ€”โ€”> Multiplication โ€”> 5 * 2
/ โ€”โ€”โ€”-> Division โ€”โ€”โ€”-> 5/2
// โ€”โ€”โ€”> Floor Division โ€”> 5 // 2
% โ€”โ€”โ€”> Modulus (remainder) โ€”> 5 % 2
** โ€”โ€”โ€”> Power โ€”โ€”โ€”โ€”> 5 ** 2

Example

x = 7
y = 3
print(x*y)
Comparison Operators
They compare two values and return True or False.
==  equal to
!= not equal
> greater than
< less than
>= greater or equal
<= less or equal
๐Ÿ‘2
Example
age = 18
print(age >= 18)
Logical Operators
Used to combine conditions:
and  both conditions must be true
or at least one condition must be true
not reverses a condition
Example
age = 20
is_student = True

print(age > 18 and is_student)
Assignment Operators
Used to update Variables:
x = 10
x += 5 # x = x + 5
x -= 2 # x = x - 2
x *= 3
x /= 2
Mini Practice Tasks

Task A
Create two numbers and print:
their sum
their difference
their product
their remainder

Task B
Ask the user for age and check if they are above 18:
Hint: Use The input() Function to accept the age:
print("After You done these tasks Try to Build a Simple Calculator Using the Arithmetic and Conditional Operators")
โœ… DAY 5
Conditionals: if and else (Python)

print("What are conditionals?")


Conditionals are used to make decisions in a program.

Syntax
if condition:
    # code runs if condition is True
else:
    # code runs if condition is False

Example

age = 18

if age >= 18:
    print("You are eligible to vote")
else:
    print("You are not eligible to vote")

Output
You are eligible to vote

---

โœ” Uses True/False conditions
โœ” Executes different code blocks
โœ” Very important for beginners
๐Ÿ‘1
Try to rebuild the calculator using conditionals as well if you have questions then feel free to ask!!
โœ…DAY 6 Python elif & Nested Conditions

python 
print('Why elif?')


if/else

handles two conditions
elif

is used when there are more than two possibilities.

score = 75

if score >= 90:
print("Grade: A")
elif score >= 70:
print("Grade: B")
else:
print("Grade: C")

print("Flow Of Execution")

Python checks conditions from top to bottom.
The first True condition runs, the rest are ignored.

โš ๏ธ Order matters!

print("Nested if Statements")

An if inside another if.

age = 20
has_id = True

if age >= 18:
if has_id:
print("Access granted")
else:
print("ID required")
else:
print("Underage")


Real Life Example
balance = 500

if balance > 0:
if balance >= 1000:
print("Premium user")
else:
print("Standard user")
else:
print("No balance")
๐Ÿ”ฅ1
Are you passionate about using #artificialIntelligence to solve real-world problems? Do you have an AI-powered idea or prototype that can improve public services in #Ethiopia?

The Ethiopian Artificial Intelligence Institute invites innovators, researchers, students, startups, and public-interest technologists to apply for Eth-Timbuktoo AI UniPod; a collaborative AI studio focused on building solutions with real public impact.

Participants will work in multidisciplinary teams, receive expert mentorship, and strengthen AI solutions designed for Ethiopiaโ€™s digital and institutional context. This is a unique opportunity to collaborate, learn, and transform innovative ideas into practical tools for better public services.

๐Ÿ“Œ Apply here: [https://forms.gle/inHZ9sByu73QsiJP7]

๐Ÿ“… Application Deadline: December 20, 2025

๐Ÿ“ž Phone: +251 904187791 / +251 943545950

follow ๐Ÿ‘‰ t.me/ignitic_tech

Women applicants are highly encouraged to apply.
Join us and be part of shaping AI for better public services.
I hope you guys are practicing what i am posting here. the last five days are productive for you guys because we are advancing to sections that are a little bit more advanced sections that require your time and practice
โœ…Day 7
Python Lists (Collections Basics)
print("What are Python Lists?")

In real life, you make lists all the time:

- Shopping list
- Contact list
- Student list

In Python, a list is used to store multiple values in a single variable.

Instead of doing this โŒ:
student1 = "Ali"
student2 = "Sara"
student3 = "John"


You do this โœ…:
students = ["Ali", "Sara", "John"]
๐Ÿ‘‰ A list:
* Can store many values
* Can store different data types
* Keeps items in order
* Allows duplicates
* Can be changed(mutable)
Creating a List
Syntax:
list_name = [item1, item2, item3]

Examples:
numbers = [1, 2, 3, 4]
names = ["Nova", "Alex", "Marta"]
mixed = [1, "Python", True, 3.5]

๐Ÿ“Œ Important:
Lists are written using square brackets [ ]