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β¦Β»
π 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
π 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
YouTube
π΄Question 1 (Output Evaluation) | ASTU Python2 Final Exam Solution |CSEg1101 | Python
Welcome to this Channel!
In this video, we break down a real ASTU (Adama Science and Technology University) Python 2 final exam problem and show how the code behaves during execution. We explain integer division, loop logic, and how the final output is producedβ¦
In this video, we break down a real ASTU (Adama Science and Technology University) Python 2 final exam problem and show how the code behaves during execution. We explain integer division, loop logic, and how the final output is producedβ¦
π 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
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
Negafan Tech
π 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β¦
YouTube
Question 1 (Code Writing)| ASTU Python Final Exam Solutions | Introduction to Computing | Python
Welcome to this Channel!
In this video, we solve a real Python final exam question involving dictionary creation and iteration. We demonstrate how to build a dictionary using a for loop and store computed values (cubes) for each key.
π What you will learn:β¦
In this video, we solve a real Python final exam question involving dictionary creation and iteration. We demonstrate how to build a dictionary using a for loop and store computed values (cubes) for each key.
π What you will learn:β¦
Python-2011FinalExam.pdf
842.3 KB
ASTU Python Final Exam Questions
π 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
Hey freshmen students!
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
π§ Common Conversions
β converts to integer
β converts to decimal number
β converts to string
β converts to True/False
β Example
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
Tip:Convert them first π
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:
π Day 7 β Operators in Python
πΈ 1. Arithmetic Operators
Used for math
Example:
πΈ 2. Comparison Operators
Used to compare values (returns True/False)
Example:
πΈ 3. Logical Operators
Used for conditions and decision-making
Example:
π§© Mini Task
#day7
#python
#programming
#negafantech
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
π
πΉ Basic If Statement
πΉ IfβElse Statement
πΉ IfβElifβElse
π‘ Why It Matters
π§© Mini Task
Day 8 β Conditional Statements in PythonConditional 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
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
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)
π¦ 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.
Telegram
Engineering Drawing Tutorial ππ
#Tutorial Barnoota Engineering Drawing Afaan Oromoon kennamu.
#2Tasalonqee 3:13
#2Tasalonqee 3:13
π₯°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
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
NSKAI UDARA
NSKAI UDARA | The Ultimate Gen Z Event Experience
Join the movement. NSKAI UDARA is the premier event platform for the next generation.