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.

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

    Django Views & URLs (Complete Guide Telugu)

    Introduction Previous article lo manam Django project create chesam. Ipudu chuddam πŸ‘‰ user request vachinappudu Django ela respond avthundi? Django lo Views & URLs anevi chala important concepts πŸ”₯ 🧠 Simple ga ardham: πŸ‘‰ URL = address πŸ‘‰ View = action (logic) User URL enter chesthe → View execute avthundi πŸ”— URLs ante enti? Example: http://127.0.0.1:8000/about/ http://127.0.0.1:8000/contact/ πŸ‘‰ /about/ , /contact/ ni URLs antaru Django lo ee URLs ni urls.py file lo define chestam ⚙️ urls.py Example from django.urls import path from . import views urlpatterns = [ path('about/', views.about_view), ] πŸ‘‰ Ikkada: 'about/' → URL about_view → View function ⚡ Views ante enti? πŸ‘‰ View ante Python function User request vachinappudu: πŸ‘‰ View function run avthundi πŸ‘‰ Response return chestundi πŸ’» Simple View Example from django.http import HttpResponse def about_view(request): return HttpResponse("Hello from About Page") πŸ‘‰ Browser lo /about/ open ches...