Skip to main content

Python Day 5 – If Else Conditions

 


🐍 Python Day 5 – If Else Conditions

🧠 Introduction

🐍 Python Day 5 – If Else Conditions

Ippati varaku manam operators nerchukunnam.
I roju manam decision making (If-Else) nerchukundam.

👉 Program lo condition base chesi decisions tiskovadaniki use avutundi

💡 Example:
Age 18 kanna ekkuva unte → eligible
Lekapothe → not eligible


🔹 Basic If Condition

age = 20

if age > 18:
print("Eligible")


🔹 If-Else Condition

age = 16

if age >= 18:
print("Eligible")
else:
print("Not Eligible")


🔹 If-Elif-Else


marks = 75

if marks >= 90:
print("Grade A")
elif marks >= 60:
print("Grade B")
else:
print("Grade C")


🧪 Real Example (User Input)

age = int(input("Enter your age: "))

if age >= 18:
print("You can vote ✅")
else:
print("You cannot vote ❌")

⚠️ Important Points

👉 Indentation (space) very important
👉 Colon : compulsory after condition
👉 Conditions lo operators use chestam (> < ==)


🎯 Mini Practice

num = int(input("Enter number: "))

if num % 2 == 0:
print("Even Number")
else:
print("Odd Number")

📌 Summary

✔ If condition nerchukunnam
✔ If-Else & Elif use chesam
✔ Real-time example run chesam

Comments

Popular posts from this blog

Django ante enti? (Beginner Friendly Telugu Guide)

  Introduction Meeru web development start cheyyali anukuntunnara? Leka backend development nerchukovali anukuntunnara? Appudu meeru tappakunda vinnadi oka peru 👉 Django Ee article lo manam simple ga, clear ga ardham ayyela chuddam — Django ante enti, enduku use chestaru, ela start cheyyali.

Django Templates & HTML Rendering (Complete Guide Telugu)

  Introduction Previous article lo manam Views & URLs chusam. Ipudu next important concept 👉 Templates & HTML Rendering Django lo dynamic HTML pages ela create cheyyalo ee article lo nerchukundam 🔥 🧠 Templates ante enti? 👉 Template ante HTML file "T emplate ante HTML file matrame kaadu, Django lo dynamic content ni display cheyadaniki use chestam. Example ga, database lo unna blog posts ni HTML page lo chupinchadaniki templates use avutayi. " But special enti ante: 👉 Dynamic data display cheyyachu (Python data → HTML lo show) 📁 Templates folder create cheyyadam Mee app lo templates ane folder create cheyandi: myapp/ templates/ index.html ⚙️ settings.py lo config cheyyali settings.py open cheyandi: TEMPLATES = [ { 'DIRS': [], ... }, ] 👉 Usually app templates automatic ga detect chestundi 💻 Simple HTML Template index.html : <!DOCTYPE html> <html> <head> <title>Django Page</title> ...