Negafan Tech pinned Β«πŸ“Day 5 β€” User Input in Python Today we learn how programs interact with people! The input() function allows users to enter data while the program is running. 🧩 How it Works name = input("Enter your name: ") print("Hello", name) When you run this, Python…»
Quiz βœ…οΈ
Negafan Tech
Quiz
The solution is posted in the comment πŸ‘‡πŸ‘‡
πŸŽ‰ Question 1 Solution is Now Out! πŸŽ‰
πŸ‘‰ ASTU Python2 Final Exam Solutions

The video for ASTU Python Final Exam – Question 1 is now available!
πŸ”₯ Step-by-step explanation
πŸ”₯ Important points highlighted
πŸ”₯ Easy to follow

Watch it here: Q1 Solution
Make sure to watch, like, share, and subscribe to support the channel β€” more questions are coming! πŸš€

Stay tuned! πŸ’»πŸ“š

#python #astu #exam #solutions #negafantech
πŸŽ‰ Question on Dictionary Operations β€” Solution Video is Out! πŸŽ‰

We just uploaded the solution for the Python final exam question where we build a dictionary using a loop and store cubes of numbers! πŸ’»πŸ“š
If you're an ASTU freshman preparing for finals, don’t miss it β€” it’s explained step-by-step!
Make sure to Like, Share, and Subscribe to support the channel β€” more questions are coming! πŸš€

Watch it here
#python #astu #freshman #finalexam #solutions #negafantech
πŸŽ‰ ASTU Freshman β€” Python2 Final Exam Playlist is Here! πŸŽ“πŸ’»

Hey freshmen students!

The final exam is tomorrow! ⏰
I’ve created a complete Python2 ASTU Final Exam Solutions playlist with step-by-step walkthroughs of real exam questions. πŸ“βœ¨

πŸ‘‰ Check it out here

Boost your Python skills, and share with your friends so everyone is ready for tomorrow! πŸš€

#python #astu #freshman #finalexam #solutions #coding #programming #learnpython #negafantech
🐍 Day 6 β€” Type Conversion (Casting) in Python

When you receive input from users or work with different data types, sometimes you need to convert values β€” for example, from text to numbers.


This process is called type conversion or casting.


πŸ”§ Common Conversions


int()

β†’ converts to integer
float()

β†’ converts to decimal number
str()

β†’ converts to string
bool()

β†’ converts to True/False

βœ” Example

age = int(input("Enter your age: "))
print(age + 1)


Here, input() gives a string, so we convert it using int() to do math.

⚠ Important
If the value cannot be converted (e.g., "hello" β†’ int()), Python will raise an error.

πŸ“Œ Where Casting is Useful?
βœ” user input
βœ” math operations
βœ” formatting text
βœ” APIs & databases
βœ” data analysis

🧩 Mini Task
Ask for two numbers using input() and print their sum.


Tip: Convert them first πŸ˜‰
🐍 Day 7 β€” Operators in Python

Operators allow Python to perform actions such as calculations, comparisons, and logic-based decisions.


πŸ”Έ 1. Arithmetic Operators

Used for math

+   -   *   /   %   **   //



Example:

x = 10
y = 3
print(x + y) # 13


πŸ”Έ 2. Comparison Operators

Used to compare values (returns True/False)

==   !=   >   <   >=   <=



Example:

print(5 > 2)   # True


πŸ”Έ 3. Logical Operators

Used for conditions and decision-making

and   or   not


Example:

print(True and False)  # False


🧩 Mini Task


Ask the user for two numbers and print:

βœ”οΈ their sum
βœ”οΈ which one is greater


#day7
#python
#programming
#negafantech
πŸ₯°1
🐍 Day 8 β€” Conditional Statements in Python

Conditional statements allow your program to make decisions based on conditions.

πŸ”Ή Basic If Statement
age = 18
if age >= 18:
print("You are an adult")


πŸ”Ή If–Else Statement

if age >= 18:
print("Adult")
else:
print("Minor")


πŸ”Ή If–Elif–Else

score = 85
if score >= 90:
print("A")
elif score >= 80:
print("B")
else:
print("C or below")

πŸ’‘ Why It Matters

Conditional logic powers real-world systems like:
βœ” login validation
βœ” access control
βœ” grading systems
βœ” navigation & decision bots
βœ” games & AI logic


🧩 Mini Task

Ask the user for a number and:
βœ” print if it’s positive, negative, or zero.
πŸ™1
Registration link for the upcoming workshop: https://us06web.zoom.us/webinar/register/WN_VoQ4yE4SRD6z_jssg0sDmw
Register for this Workshop
Ready to build your future in AI?

iCog Labs 2026 AI Internship applications are now open! Learn, experiment, and work on real-world AI projects with one of the industry's leading labs. This is your chance to turn curiosity into impact.

Calling all AI Enthusiasts!
iCog Labs is seeking talented individuals to join our 2026 Batch 1 AI Talent Program. You’ll dive into cutting-edge projects, learn directly from experts, and accelerate your technical growth.

What we’re looking for:
A Passion for AI: You live and breathe emerging tech.
Strong Problem-Solving Skills: You enjoy deconstructing complex challenges.
A Growth Mindset: A relentless desire to learn, innovate, and build.

Apply Now : https://lnkd.in/dw_gbBCu
Deadline: Feb 28/2026
πŸ₯°1πŸ‘Œ1
Age of Programming LanguagesπŸ‘¨πŸ»β€πŸ’»

πŸ¦… Swift (11 years old) (2014)
πŸš€ Kotlin (13 years old) (2011)
πŸ¦€ Rust (14 years old) (2010)
🐹 Go (15 years old) (2009)
πŸ”· TypeScript (12 years old) (2012)
🎸 C# (24 years old) (2000)
πŸ’Ž Ruby (29 years old) (1995)
β˜• Java (29 years old) (1995)
🌐 JavaScript (29 years old) (1995)
🐘 PHP (30 years old) (1994)
🐍 Python (34 years old) (1991)
πŸͺ Perl (37 years old) (1987)
πŸš€ C++ (39 years old) (1985)
πŸ“± Objective-C (40 years old) (1984)
πŸ” Prolog (52 years old) (1972)
πŸ—£οΈ Smalltalk (52 years old) (1972)
πŸ–₯️ C (52 years old) (1972)
πŸ“ Pascal (54 years old) (1970)
πŸŽ“ BASIC (60 years old) (1964)
πŸ’Ό COBOL (65 years old) (1959)
πŸ€– Lisp (66 years old) (1958)
πŸ“œ Fortran (67 years old) (1957)
https://t.me/kttutorial

If you are looking for Engineering Drawing concepts, materials and tutorials join this group.
πŸ₯°2
πŸš€ Join the Pan-African AI Movement – The Udara Project

Future Innovator,

You’re invited by Ambassador Negasa Reta to be part of The Udara Project β€” a FREE AI Literacy Program designed for African students ready to learn, build, and innovate together.

🎯 What You’ll Get (100% Free)

✨ Practical AI skills for academics & career growth
✨ Live and recorded sessions from expert instructors
✨ Hands-on projects to build your portfolio
✨ A powerful network of peers and mentors across Africa
✨ A certificate to strengthen your CV
✨ A chance to contribute to Africa’s AI future

⏳ How to Join (Only 30 Seconds)

Click the link below and complete your registration:

πŸ”— https://theudaraproject.com/register?ref=None

Thousands of students are already signing up β€” spots are filling fast!

πŸ‘‰ Secure your place now:
https://theudaraproject.com/register?ref=None