Skip to main content

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 enti telusukunam
    ✔ Install chesam
    ✔ First program 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.

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

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