Skip to main content

Posts

Showing posts from April, 2026

Python Day 8 – Lists

  🧠 Introduction 🐍 Python Day 8 – Lists Ippati varaku manam functions nerchukunnam. Eroju manam Lists gurinchi nerchukundam. πŸ‘‰ List ante multiple values ni okesari store cheyadaniki use avutundi πŸ’‘ Example: Shopping items list laga πŸ“¦ πŸ”Ή Create List numbers = [ 1 , 2 , 3 , 4 , 5 ] names = [ "Manju" , "Ravi" , "Kiran" ] πŸ”Ή Access List (Index) print ( numbers [ 0 ]) # 1 print ( names [ 1 ]) # Ravi πŸ‘‰ Index always 0 nundi start avutundi ⚠️ πŸ”Ή Add Elements numbers . append( 6 ) print ( numbers ) πŸ”Ή Remove Elements numbers . remove( 3 ) print ( numbers ) πŸ”Ή Loop Through List for i in numbers : print ( i ) πŸ”Ή List Length print ( len ( numbers )) πŸ”Ή Slicing print ( numbers [ 1 : 4 ]) πŸ§ͺ Real Example marks = [ 80 , 90 , 75 , 60 ] for m in marks : if m >= 75 : print ( "Pass:" , m ) 🎯 Mini Practice names = [ "A" , "B" , "C" ] names . append( "D...

Python Day 7 – Functions

  🧠 Introduction 🐍 Python Day 7 – Functions Ippati varaku manam loops nerchukunnam. Eroju manam Functions gurinchi nerchukundam. πŸ‘‰ Function ante reusable block of code πŸ‘‰ Same code malli malli rayakunda use cheyachu πŸ’‘ Real-time lo time save + clean code πŸ”₯ πŸ”Ή Function Create Cheyadam def greet ():      print ( "Hello, Welcome!" ) πŸ‘‰ Function call cheyali: greet () πŸ”Ή Function with Parameters def greet ( name ): print ( "Hello" , name ) greet ( "Manju" ) πŸ”Ή Function with Return def add ( a , b ):      return a + b result = add ( 10 , 5 ) print ( result ) πŸ§ͺ Real Example def check_even ( num ):      if num % 2 == 0 :           return "Even"      else :           return "Odd" print ( check_even ( 4 )) ⚠️ Important Points πŸ‘‰ def keyword use chestam πŸ‘‰ Function call cheyyakapothe run avadu πŸ‘‰ return ...

Python Day 6 – Loops (for & while)

  🐍 Python Day 6 – Loops (for & while) 🧠 Introduction 🐍 Python Day 6 – Loops (for & while) Manam If-Else tho decisions tiskunnam. Eroju manam loops nerchukundam. πŸ‘‰ Loop ante same code ni malli malli run cheyadam πŸ‘‰ Time save avutundi + automation easy πŸ’‘ Example: 1 nundi 10 varaku print cheyadam πŸ” for Loop for i in range ( 1 , 6 ): print ( i ) πŸ‘‰ Output: 1 2 3 4 5 πŸ” while Loop i = 1 while i <= 5 : print ( i ) i += 1 πŸ§ͺ Example – Table Print num = int ( input ( "Enter number: " )) for i in range ( 1 , 11 ): print ( num , "x" , i , "=" , num * i ) ⚠️ Infinite Loop (Careful!) while True : print ( "Hello" ) πŸ‘‰ Stop cheyyali ante: Ctrl + C 🎯 Mini Practice for i in range ( 1 , 11 ): if i % 2 == 0 : print ( i ) πŸ‘‰ Even numbers print avutayi πŸ“Œ Summary ✔ for loop nerchukunnam ✔ while loop use chesam ✔ practical examples chusam

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 import...

Python Day 4 – Operators

  🐍 Python Day 4 – Operators 🧠 Introduction 🐍 Python Day 4 – Operators Ippati varaku manam input & output nerchukunnam. I roju manam Operators gurinchi nerchukundam. πŸ‘‰ Operators ante values mida operations cheyadaniki use avuthayi Example: +, -, *, / πŸ’‘ Maths lo use chese symbols laga ne untayi ➕ Arithmetic Operators <> Python a = 10 b = 5 print(a + b) print(a - b) print(a * b) print(a / b) # 15 # 5 # 50 # 2.0 πŸ”’ More Operators print ( a % b ) # Modulus (remainder) print ( a ** b ) # Power print ( a // b ) # Floor division πŸ§ͺ Example Program a = int ( input ( "Enter first number: " )) b = int ( input ( "Enter second number: " )) print ( "Addition:" , a + b ) print ( "Subtraction:" , a - b ) print ( "Multiplication:" , a * b ) print ( "Division:" , a / b ) πŸ“Œ Comparison Operators a = 10 b = 5 print ( a > b ) # True print ( a < b ) # False print ( a == b ) # Fals...

Python Input Output in Telugu | Day 3 | LearnWithManju

  🐍 Python Day 3 – Input & Output 🧠 Introduction 🐍 Python Day 3 – Input & Output Ippati varaku manam variables & data types nerchukunnam. Eroju manam user nundi input tiskoni output chupinchadam nerchukundam. πŸ‘‰ Input = User nundi data tiskovadam πŸ‘‰ Output = Screen meeda result chupinchadam πŸ’‘ Real-time applications lo idi chala important πŸ”₯

🐍 Python Day 2 – Variables & Data Types

  🧠 Introduction 🐍 Python Day 2 – Variables & Data Types Ninna manam Python install chesi first program run chesam. Eroju manam  Variables & Data Types  nerchukundam. πŸ‘‰ Variables ante data ni store cheyadaniki use chestam πŸ‘‰ Data Types ante aa data type enti ani chepthayi πŸ’‘ Simple ga: Variable = box πŸ“¦ Value = danilo unna item Example: box lo apple unte → variable lo value untundi 🍎 πŸ“¦ Variables in Python πŸ‘‰ Variable create cheyadam easy: name = "Manju" age = 21 πŸ‘‰ Rules: Letters tho start avvali Numbers start lo undakudadhu ❌ Spaces undakudadhu ❌ Underscore (_) use cheyachu ✅ πŸ§ͺ Example name = "Manju" age = 21 is_student = True print ( name ) print ( age ) print ( is_student ) πŸ‘‰ Output: Manju 21 True  πŸ”’ Data Types in Python 1️⃣ String (str) πŸ‘‰ Text data name = "Manju" 2️⃣ Integer (int) πŸ‘‰ Whole numbers age = 21 3️⃣ Float (float) πŸ‘‰ Decimal numbers price = 99.99 4️⃣ Boolean (bool) πŸ‘‰ True / False is_active = True ...

Python Day 1 – Introduction & Installation (English + Telugu)

  🐍 Python Day 1 – Introduction & Installation "Python anedi world lo most popular programming languages lo okati. Easy syntax, powerful features valla beginners ki perfect choice." πŸ‘‰ Python use chesi: Web development (Django, Flask) Data Science AI & Machine Learning Automation scripts anni cheyachu πŸš€ πŸ’‘ “Code cheyyadam tho ne nerchukovali” Ee series lo manam step-by-step ga Python nerchukundam πŸ’»πŸ”₯ πŸ’» Install Python (Step-by-Step) πŸ”Ή Step 1: πŸ‘‰ Official website open chey https://www.python.org πŸ”Ή Step 2: πŸ‘‰ “Download Python” click chey πŸ”Ή Step 3: πŸ‘‰ Install chesetappudu important: ✔ “Add Python to PATH” tick chey ✔ Install Now click chey ✅ Verify Installation Command Prompt (CMD) open chesi run chey: python --version πŸ‘‰ Output: Python 3.x.x πŸ§ͺ First Python Code print ( "Hello World πŸš€" ) πŸ‘‰ Run chey: python filename.py 🧠 Explanation πŸ‘‰ print() function use chesi output display chestham πŸ‘‰ Idi Python lo first basic step 🎯 Today Summary ...

Python Series (LearnWithManju)

Python anedi beginner-friendly and powerful programming language . Web development, AI, Data Science, Automation — anni Python tho possible. Ee series lo manam: πŸ‘‰ Basics nunchi start chestham πŸ‘‰ Real-time examples chustham πŸ‘‰ Projects build chestham πŸ’‘ “Code cheyyadam tho ne nerchukovali” Day by day practical ga Python nerchukundam πŸ’»πŸ”₯

“Password Reset in Django – Complete Guide”

  Password Reset in Django – Complete Guide πŸ” Introduction Web applications lo Password Reset feature chala important. User password marchipothe, easy ga recover chesukovadaniki use avutundi. Real-time lo: Gmail Facebook Instagram anni password reset system use chestayi. ⚙️ How Password Reset Works? πŸ‘‰ Step-by-step flow: User “Forgot Password” click chestadu Email enter chestadu System reset link send chestundi User link open chestadu New password set chestadu πŸ‘‰ Idi secure ga untundi because: Token based verification Time limit untundi ⚙️ Django Password Reset Code 1️⃣ settings.py (EMAIL Setup) # settings.py EMAIL_BACKEND = 'django.core.mail.backends.console.EmailBackend' πŸ‘‰ Dev lo console lo email link chupistundi πŸ‘‰ Production lo Gmail SMTP use cheyachu 2️⃣ urls.py from django . urls import path from django . contrib . auth import views as auth_views urlpatterns = [ path ( 'password-reset/' , auth_v...

User Authentication in Django (Login, Register, Logout)

 User Authentication in Django (Login, Register, Logout) 🧠 Introduction Modern web applications lo User Authentication chala important concept. Simple ga cheppali ante, website lo users ni identify cheyadam, secure access ivvadam. Manam daily use chese apps like: Social media E-commerce websites Blogging platforms anni authentication system meeda depend ayi untayi. πŸ” What is User Authentication? User Authentication ante: πŸ‘‰ User evaro verify cheyadam πŸ‘‰ Valid credentials (username, password) check cheyadam πŸ‘‰ Correct ayite access ivvadam Idi security backbone ani cheppachu. ⚙️ Main Components 1️⃣ Register (Sign Up) Kotha user account create chesukuntadu. πŸ‘‰ User details: Username Email Password Store avutayi database lo. 2️⃣ Login Already account unna user login avutadu. πŸ‘‰ System: Username/password verify chestundi Correct ayite login allow chestundi 3️⃣ Logout User session ni close cheyadam. πŸ‘‰ Security kosam: Logout taruvata...