πŸš€ Cycle 3 of the She Code Africa Mentorship Program is NOW OPEN! πŸ’ƒπŸ’ƒ

Ready to learn, grow, and connect with women building their tech careers? Whether you want personalised guidance as a mentee or you’re eager to give back as a mentor, this cycle is for YOU.

🌟 Tracks available:
β€’ Data Analysis
β€’ Frontend Development
β€’ UI/UX Design
β€’ Product Management

If you’ve been waiting for the right moment to upskill, find clarity, or support another woman in tech β€” this is your sign!

πŸ‘©β€πŸ« Mentor applications: https://wp.me/p23f03-hHS

πŸ‘©β€πŸ’» Mentee applications: https://wp.me/p23f03-hHS

Tag a Queen who needs to see this! πŸ‘‘βœ¨

hashtag#SheCodeAfrica hashtag#HPDigitalEquityGrant hashtag#MentorshipProgram hashtag#WomenInTech hashtag#T
❀1
⚑️CLAIM LOVABLE PRO FREE FOR 2 MONTHS

1. Use this link to create a NEW ACCOUNT on Lovable (Get 10 extra credits)
https://lovable.dev/invite/DSJLLAN

2. Click on Upgrade to Pro on Sidebar
3. Use coupon code : NEXTPLAY-LOV-25
4. Enjoy 2 months of Pro for free
❀1
Negafan Tech pinned «⚑️CLAIM LOVABLE PRO FREE FOR 2 MONTHS 1. Use this link to create a NEW ACCOUNT on Lovable (Get 10 extra credits) https://lovable.dev/invite/DSJLLAN 2. Click on Upgrade to Pro on Sidebar 3. Use coupon code : NEXTPLAY-LOV-25 4. Enjoy 2 months of Pro for free»
#Ads
#health
Public Health Brief YouTube Channel

Public Health Brief is a reliable channel focused on delivering clear, accurate, and evidence-based public health information in a simple and practical way. Our goal is to help you understand health issues, prevent disease, and make smart decisions for a healthier life.

In a world full of myths and misinformation, we share facts you can trust, practical health tips, and awareness messages that truly matter for individuals and communities. Knowledge empowers, prevention protects, and informed choices save lives.

πŸ‘‰ Subscribe for trusted health information
πŸ‘ Like to support health education
πŸ” Share to protect others

Public Health Brief β€”
informed people live healthier lives.


πŸ”—https://youtube.com/@publichealthbrief?si=IFxT8-LlyL-nfzf6
❀3
πŸŽ“πŸ’‘ Students, great news!
Still you can access Perplexity AI PRO for FREE using your student ID!

Perplexity AI helps you:
βœ… Do research and write assignments faster
βœ… Summarize long notes and articles
βœ… Improve essays and reports
βœ… Prepare for exams with smart AI support

πŸ”₯ Apply for the Student Pro Plan β€” get full access FREE with your valid student ID:
πŸ‘‰ https://plex.it/referrals/FWMDTZPE

Make your study time smarter with AI that truly helps you learn! πŸš€
#PerplexityAI #StudentPro #FreeForStudents
❀2πŸ‘1
Forwarded from Wallet
Buy USDT with ETB at the best rates on the P2P Market

With Crypto Wallet, you can now exchange Ethiopian birr directly on P2P Market. Go beyond simple exchanges β€” convert your local currency into USDT to store value, protect your savings from inflation, and keep your funds stable.

Want even more?

Deposit USDT or other tokens into Earn programs and start generating passive income automatically.
Trade, protect, and grow your money β€” all in one place.

Manage notifications
πŸ”° Python data types with example
❀2
Python is more fun when we learn together! I’ll be posting daily Python Programming conceptsβ€”from beginner to advancedβ€”so make sure to engage, react, and invite others who want to build their coding skills! πŸ’»πŸ”₯
πŸ‘2πŸ”₯2
🐍 Day 1 β€” What is Python?
πŸ”₯1
🐍 Day 1 β€” What is Python? (Introduction)

Python is a popular high-level programming language known for its simplicity and readability. It’s widely used in:
βœ” Web development
βœ” Data science
βœ” Artificial intelligence & machine learning
βœ” Automation
βœ” Cybersecurity
βœ” Scripting & tooling

πŸ‘‰ Why Python?
βœ…οΈEasy to learn
βœ…οΈHuge community support
βœ…οΈLarge standard library
βœ…οΈRuns on all platforms
βœ…οΈUsed by top companies (Google, Meta, Netflix, NASA

🧾 Example Python Code:

print("Hello, Python!")


Output:
Hello, Python!


πŸ“Œ Fun fact
Python is named after Monty Python comedy group, not the animal 🐍

πŸ’¬ Mini Task
Tell us in comments:
Why do you want to learn Python?
🐍 Day 2 β€” Installing Python & Running Your First Code
🐍 Day 2 β€” Installing Python & Running Your First Code

Before we start writing Python programs, we need to set up our environment.

πŸ’» Step 1: Install Python
Download Python from the official website:
➑️ https://www.python.org/downloads
Make sure to check:
βœ” Add Python to PATH during installation (important!)

🧰 Step 2: Choose Where to Write Code
You can use any of the following:
βœ” IDLE (comes with Python)
βœ” VS Code (very popular)
βœ” PyCharm
βœ” Jupyter Notebook (for data science)
For beginners, VS Code or IDLE is perfect.
▢️ Step 3: Run Your First Python Code
Open your editor and type:
print("Hello, Python!")


If you see:
Hello, Python!


Congrats! 🀝 You just ran your first Python program.

πŸ“Œ Tip of the Day
Python uses indentation (spaces/tabs) instead of braces {} β€” so spacing matters!

πŸ“ Mini Task
Comment below:
Which editor are you using?

#negafantech
#python
#programming
#day2
🧩 Bonus Post: Interpreted vs Compiled Languages

When learning programming, you’ll often hear β€œinterpreted language” and β€œcompiled language.” Here’s the difference

πŸ‘‡

πŸ”Ή Compiled Language

A compiled language uses a compiler to translate the entire code into machine language before execution.


βœ”οΈ Faster execution
βœ”οΈ Errors detected at compile time
βœ”οΈ Produces an executable file

Examples: C, C++, Rust, Go

πŸ”Ή Interpreted Language

An interpreted language uses an interpreter to translate and run code line-by-line during execution.


βœ”οΈ Easier to test & debug
βœ”οΈ More flexible & portable
βœ–οΈ Usually slower than compiled languages

Examples: Python, JavaScript, Ruby, PHP

🧠 Key Insight

Compiled = β€œtranslated fully before running”
Interpreted = β€œtranslated as it runs”

🐍 Where does Python fit?

Python is generally considered an interpreted language, but internally it first compiles to bytecode (.pyc) and then the Python Virtual Machine interprets it. This is why Python is flexible and beginner-friendly.


πŸ’¬ Question for you

Which type do you think is better for beginners β€” compiled or interpreted?


Comment your thoughts! πŸ‘‡

YOUTUBE | TELEGRAM | TIKTOK
πŸ₯°1
🐍 Day 3 β€” Variables in Python

In Python, variables are used to store information so we can use it later in our program.
Think of a variable as a labeled box that holds data.

βœ” Creating a Variable
Example:
name = "Alice"
age = 21
pi = 3.14


Here:
"Alice" is a string
21 is an integer
3.14 is a float

Python automatically detects the type β€” no need to declare it manually.

βœ” Printing Variables

print(name)
print(age)


Output:

Alice
21


πŸ’‘ Why Variables Matter?
Variables make programs dynamic and flexible. You can change their values without changing the entire code.

🧩 Mini Task
Create two variables: your name and your favorite programming language, then print them.

Reply with your output! πŸ‘‡

#negafantech
#Python
#programming
#day3

πŸ’¬ Join the Telegram community πŸ”—
πŸŽ₯ Follow on TikTok πŸ”—
πŸ“Ί Watch on YouTube πŸ”—
Day 4 - Data Types in Python
🐍 Day 4 β€” Data Types in Python

In Python, every value has a data type. Data types tell Python what kind of data it is working with.


Here are some of the most common beginner-friendly types:
πŸ”Ή 1. String (str)
Used for text
name = "Alice"

πŸ”Ή 2. Integer (int)
Whole numbers
age = 20

πŸ”Ή 3. Float (float)
Decimal numbers
pi = 3.14

πŸ”Ή 4. Boolean (bool)
True or False values
is_student = True

πŸ”Ή 5. None Type
Represents no value
data = None


πŸ’‘ Why Data Types Matter?
βœ” Helps Python understand how to store and operate on data
βœ” Enables validation, calculations, decisions, and formatting
βœ” Makes your code logical and predictable


🧩 Mini Task

Create variables using at least 3 different data types and print them out.


Share your outputs below! πŸ‘‡

πŸ’¬ Join the Telegram community πŸ”—
πŸŽ₯ Follow on TikTok πŸ”—
πŸ“Ί Watch on YouTube πŸ”—