Telugu WebTech
Telugu WebTech
  • 306
  • 1 818 401
44. Encapsulation in Python Object Oriented Programming | Python Tutorial in Telugu
Encapsulation in Python OOP is the practice of restricting access to a class’s internal data and methods, promoting modularity and security. It hides implementation details and exposes only necessary functionality. This ensures controlled data manipulation, enhances maintainability, and protects the integrity of the class by defining clear boundaries for interaction.
Source code:
github.com/TeluguWebTech/python_tutorial
PPT:
docs.google.com/presentation/d/1acUzZGzqWqqn_5MxGeKMGg63_860Erw0/edit?usp=sharing&ouid=105365640261583849028&rtpof=true&sd=true
มุมมอง: 121

วีดีโอ

43. Inheritance in Python Object Oriented Programming | Python Tutorial in Telugu
มุมมอง 13114 วันที่ผ่านมา
Inheritance in Python OOP allows a child class to inherit attributes and methods from a parent class, promoting code reuse. The `super()` function calls parent methods, aiding initialization and overrides. Python supports multiple inheritance, where a class can inherit from multiple parents, enabling flexibility but requiring careful design to avoid conflicts. Source code: github.com/TeluguWebT...
42. Object Oriented Programming in Python | Python Tutorial in Telugu
มุมมอง 21421 วันที่ผ่านมา
Object-Oriented Programming (OOP) is a programming paradigm that organizes code using objects, which combine data (attributes) and behavior (methods). It emphasizes principles like encapsulation, inheritance, and polymorphism, enabling modular, reusable, and scalable code. OOP models real-world entities, making it intuitive for developers and suitable for complex software development projects. ...
Next JS Full-Stack Project || Resort Bookings || Next JS in Telugu
มุมมอง 880หลายเดือนก่อน
A full-stack resort booking project built with Next.js integrates dynamic, server-side rendering with a robust backend. The application offers users a seamless experience for browsing, selecting, and booking resort stays. It features user authentication, and a responsive, mobile-friendly design. The backend, handles API requests, and ensures data security. The project also incorporates modern t...
41. Reduce Function in Python | Python Tutorial in Telugu
มุมมอง 149หลายเดือนก่อน
The `reduce` function in Python, from the `functools` module, applies a specified function cumulatively to items in an iterable, reducing it to a single value. It takes two arguments: the function and the iterable. Commonly used for operations like summing or multiplying, it simplifies repetitive tasks across sequences. Source code: github.com/TeluguWebTech/python_tutorial PPT: docs.google.com/...
40. Modules in Python | Python Tutorial in Telugu
มุมมอง 272หลายเดือนก่อน
Modules in Python are files containing reusable code, such as functions, classes, or variables, organized for modular programming. They allow code reusability and better organization. Modules can be imported using `import` or `from ... import`. Built-in, user-defined, and third-party modules extend Python's functionality, promoting efficient and clean development. Source code: github.com/Telugu...
39. Filter & Map Functions in Python | Python Tutorial in Telugu
มุมมอง 102หลายเดือนก่อน
The `filter` and `map` functions in Python are built-in tools for processing iterables. `filter` selects elements from an iterable based on a condition provided by a function, returning only those that meet the criteria. `map` applies a given function to each element in an iterable, returning the transformed results. Source code: github.com/TeluguWebTech/python_tutorial 0:00:00 filter function ...
Next JS Tutorial in 1 video | Next JS in Telugu
มุมมอง 1Kหลายเดือนก่อน
Next.js is a popular React framework that enables developers to build server-rendered or statically exported React applications with ease. It provides a hybrid static and server rendering, smart bundling, route pre-fetching, and more. With features like automatic code splitting, optimized performance, and seamless integration with APIs, Next.js simplifies the development of complex applications...
38. Callback Functions in Python | Python Tutorial in Telugu
มุมมอง 118หลายเดือนก่อน
A callback function in Python is a function passed as an argument to another function, allowing it to be called at a later point. Callbacks enable dynamic behavior, as the passed function can be executed upon completion of a task or event. Source code: github.com/TeluguWebTech/python_tutorial PPT: docs.google.com/presentation/d/1acUzZGzqWqqn_5MxGeKMGg63_860Erw0/edit?usp=sharing&ouid=10536564026...
37. Lambda Functions in Python | Python Tutorial in Telugu
มุมมอง 108หลายเดือนก่อน
Lambda functions in Python are anonymous, single-expression functions defined using the `lambda` keyword. They take any number of arguments but return a single expression's result. Commonly used for short, throwaway functions, they enhance code readability in operations like filtering, mapping, and sorting. Syntax: `lambda arguments: expression`. Source code: github.com/TeluguWebTech/python_tut...
36. Scopes in Python | Python Tutorial in Telugu
มุมมอง 90หลายเดือนก่อน
In Python, scope defines where a variable is accessible. There are four types: local (inside a function), enclosing (in nested functions), global (module-level), and built-in (predefined names). Python resolves variables using Local, Enclosing, Global, Built-in. `global` and `nonlocal` keywords modify variable accessibility. Source code: github.com/TeluguWebTech/python_tutorial PPT: docs.google...
35. **kwargs in Python | Python Tutorial in Telugu
มุมมอง 97หลายเดือนก่อน
In Python, ` kwargs` is used to pass a variable number of keyword arguments to a function. It collects arguments as a dictionary, allowing flexibility in handling named parameters. This is useful when the exact arguments are unknown or optional. Source code: github.com/TeluguWebTech/python_tutorial PPT: docs.google.com/presentation/d/1acUzZGzqWqqn_5MxGeKMGg63_860Erw0/edit?usp=sharing&ouid=10536...
34. Arbitrary Arguments in Python | Python Tutorial in Telugu
มุมมอง 94หลายเดือนก่อน
Arbitrary arguments in Python allow functions to accept a variable number of positional arguments using `*args`. These arguments are stored as a tuple, enabling flexible function calls without predefined parameters. For example: `def func(*args): print(args)`. This is useful for handling dynamic input or optional arguments in functions. Source code: github.com/TeluguWebTech/python_tutorial PPT:...
33. Return Statements in Python | Python Tutorial in Telugu
มุมมอง 101หลายเดือนก่อน
The `return` statement in Python exits a function and sends a value back to the caller. It can return any object, including numbers, strings, lists, or even other functions. If no `return` is specified, the function returns `None`. Source code: github.com/TeluguWebTech/python_tutorial PPT: docs.google.com/presentation/d/1acUzZGzqWqqn_5MxGeKMGg63_860Erw0/edit?usp=sharing&ouid=1053656402615838490...
32. Parameters Vs Arguments in Python | Python Tutorial in Telugu
มุมมอง 79หลายเดือนก่อน
In Python, parameters are placeholders specified in a function's definition, representing the input a function expects. Arguments are the actual values passed to the function when it is called. Parameters define the function's structure, while arguments provide the real data to process during execution. Source code: github.com/TeluguWebTech/python_tutorial PPT: docs.google.com/presentation/d/1a...
31. Functions in Python | Python Tutorial in Telugu
มุมมอง 167หลายเดือนก่อน
31. Functions in Python | Python Tutorial in Telugu
30. Input funciton with "while" loop in Python | Python Tutorial in Telugu
มุมมอง 62หลายเดือนก่อน
30. Input funciton with "while" loop in Python | Python Tutorial in Telugu
29. Input Function in Python | Python Tutorial in Telugu
มุมมอง 69หลายเดือนก่อน
29. Input Function in Python | Python Tutorial in Telugu
28. Nested Loop in Python | Python Tutorial in Telugu
มุมมอง 89หลายเดือนก่อน
28. Nested Loop in Python | Python Tutorial in Telugu
27. For Loop in Python | Python Tutorial in Telugu
มุมมอง 62หลายเดือนก่อน
27. For Loop in Python | Python Tutorial in Telugu
26. Continue & Break in Python | Python Tutorial in Telugu
มุมมอง 77หลายเดือนก่อน
26. Continue & Break in Python | Python Tutorial in Telugu
25. While loop in Python | Python Tutorial in Telugu
มุมมอง 78หลายเดือนก่อน
25. While loop in Python | Python Tutorial in Telugu
24. Practical Conditions with Statements | Python Tutorial in Telugu
มุมมอง 83หลายเดือนก่อน
24. Practical Conditions with Statements | Python Tutorial in Telugu
23. Conditional Statements in Python | Python Tutorial in Telugu
มุมมอง 83หลายเดือนก่อน
23. Conditional Statements in Python | Python Tutorial in Telugu
22. Bin Function in Python | Python Tutorial in Telugu
มุมมอง 86หลายเดือนก่อน
22. Bin Function in Python | Python Tutorial in Telugu
21. Decimal system in Python | Python Tutorial in Telugu
มุมมอง 104หลายเดือนก่อน
21. Decimal system in Python | Python Tutorial in Telugu
20. Logical Operators in Python | Python Tutorial in Telugu
มุมมอง 86หลายเดือนก่อน
20. Logical Operators in Python | Python Tutorial in Telugu
19. Assignment Operators in Python | Python Tutorial in Telugu
มุมมอง 101หลายเดือนก่อน
19. Assignment Operators in Python | Python Tutorial in Telugu
18. Comparison Operators in Python | Python Tutorial in Telugu
มุมมอง 68หลายเดือนก่อน
18. Comparison Operators in Python | Python Tutorial in Telugu
17. Arithmetic Operators in Python | Python Tutorial in Telugu
มุมมอง 107หลายเดือนก่อน
17. Arithmetic Operators in Python | Python Tutorial in Telugu

ความคิดเห็น

  • @Koduruvenkatesh-r1j
    @Koduruvenkatesh-r1j 26 นาทีที่ผ่านมา

    thank you so much.good content

  • @SoniyaSai-jl5hd
    @SoniyaSai-jl5hd 9 ชั่วโมงที่ผ่านมา

    Tq

  • @sravya-f8r
    @sravya-f8r 14 ชั่วโมงที่ผ่านมา

    Thats really clear and great explanation Sir. Thanks much. Got a question, when we integrate this with front end applications, do we still need views in ejs in NodeJS. If yes, we don't need to build them in frontend again (for ex. React)? Whats the use of frontend here?

  • @akhila.v3312
    @akhila.v3312 19 ชั่วโมงที่ผ่านมา

    DSA using python videos cheyandi

  • @keerthi_davala2526
    @keerthi_davala2526 20 ชั่วโมงที่ผ่านมา

    Anna ee mongodb lo backend ela rayali store cheyalo chepparaa

    • @teluguwebtechtutorials
      @teluguwebtechtutorials 19 ชั่วโมงที่ผ่านมา

      Please check out this video th-cam.com/video/jVGWmqg418I/w-d-xo.html

  • @nagajayendragopivilasagara4139
    @nagajayendragopivilasagara4139 วันที่ผ่านมา

    Can you please start java full stack course after this..

  • @Manoj-l8y
    @Manoj-l8y วันที่ผ่านมา

    Love from USA 🇺🇸 🇮🇳

  • @lokeshrebel4565
    @lokeshrebel4565 2 วันที่ผ่านมา

    Web page loo ela vastundi anna konchem explain cheyyav a

  • @lokeshrebel4565
    @lokeshrebel4565 2 วันที่ผ่านมา

    Anna output ela chudali 😢

  • @naraharichaithanya7001
    @naraharichaithanya7001 2 วันที่ผ่านมา

    Thanks bro Its helped alot while practicing

  • @thethis5804
    @thethis5804 2 วันที่ผ่านมา

    I really appreciate that you really taught very nicely. Thank you so much🎉🎉🎉🎉

  • @infosec4all849
    @infosec4all849 2 วันที่ผ่านมา

    Amazing playlist on React in Telugu, thankyou for @TeluguWebTech

  • @musiczone7152
    @musiczone7152 2 วันที่ผ่านมา

    Nice explanation sir

  • @skvali7491
    @skvali7491 3 วันที่ผ่านมา

    react mottam entey na enka unda?

  • @SrinuTedlapu
    @SrinuTedlapu 3 วันที่ผ่านมา

    Way of teaching very very extordinary

  • @NaughtyBoyABHI
    @NaughtyBoyABHI 3 วันที่ผ่านมา

    sir arrey ki var ana conset ana thisukovacha ledha let ookati thisukovala

  • @dhanamjeevigangaraju3018
    @dhanamjeevigangaraju3018 4 วันที่ผ่านมา

    very useful brother thank you

  • @sannikeshachari3912
    @sannikeshachari3912 5 วันที่ผ่านมา

    If a date is already booked, then availability should not be shown for that date

  • @kodampalliakhila856
    @kodampalliakhila856 6 วันที่ผ่านมา

    Well understood bro

  • @JoguSravani23
    @JoguSravani23 6 วันที่ผ่านมา

    sir payment option ledha

  • @Unknownspider09
    @Unknownspider09 6 วันที่ผ่านมา

    bro pre-increment inkka pre-decrement kossam cheppaledhu

  • @TR63018
    @TR63018 7 วันที่ผ่านมา

    Thank you sir I am student I am studying in 8th class

  • @Koduruvenkatesh-r1j
    @Koduruvenkatesh-r1j 7 วันที่ผ่านมา

    thanks for your explanation.Its really helpful

  • @DariyaHussainKondapalli
    @DariyaHussainKondapalli 7 วันที่ผ่านมา

    react medha kooda cheyandi

  • @user-zb4rx9mo4v
    @user-zb4rx9mo4v 8 วันที่ผ่านมา

    Nice explanation Bro

  • @happynaa6299
    @happynaa6299 9 วันที่ผ่านมา

    MySQL videos cheyandi sir ..❤

  • @teluguteche8131
    @teluguteche8131 10 วันที่ผ่านมา

    ctrl+d not working to select all the classes

    • @teluguwebtechtutorials
      @teluguwebtechtutorials 10 วันที่ผ่านมา

      First select one portion and hit ctrl D it highlights all similar code

  • @koppalaobulreddy8092
    @koppalaobulreddy8092 11 วันที่ผ่านมา

    Excellent explanation. thanks lot

  • @pradeeppachikayala5202
    @pradeeppachikayala5202 11 วันที่ผ่านมา

    What you are telling about concept on react is super sir .The way if coaching good sir.

  • @pradeeppachikayala5202
    @pradeeppachikayala5202 11 วันที่ผ่านมา

    Please make a videos of react native sir

  • @saikirankollimalla9040
    @saikirankollimalla9040 14 วันที่ผ่านมา

    waiting for your django course sir

  • @guruzone2288
    @guruzone2288 14 วันที่ผ่านมา

    why its kept ? Var and let.. almost both are same.what difference it makes if declared multiple times or not

  • @thezentunesshow
    @thezentunesshow 14 วันที่ผ่านมา

    "sir to store on list we use [] sir, then how list((range(0,99)) is possible, and () it is used for tuples right" (or) " these process different then what process it is name if this process please let me know sir"

  • @venkateshmadaka4506
    @venkateshmadaka4506 15 วันที่ผ่านมา

    Please upload videos fastly sir

  • @user-DMrw3nd5gk2z
    @user-DMrw3nd5gk2z 15 วันที่ผ่านมา

    Its nice and clear Explanation . Thank you very much completed whole course.

  • @Dragonnboosters
    @Dragonnboosters 15 วันที่ผ่านมา

    bro please make tutorials on react native

  • @manoharmanu.j601
    @manoharmanu.j601 15 วันที่ผ่านมา

    Sir eppudu cookies and sessions use chesi Authentication cheyala Leda jwttokens use cheyala

  • @srinuvasu6747
    @srinuvasu6747 16 วันที่ผ่านมา

    plese start microservices in the node js

  • @rowdybiguu2129
    @rowdybiguu2129 16 วันที่ผ่านมา

    Sir react js notes provide cheyaraa. Sir meeru

  • @pradeepreddy5454
    @pradeepreddy5454 16 วันที่ผ่านมา

    Hello bro while we are connecting to mongodb getting error querySrv ENOTFOUND _mongodb._tcp.3132 at QueryReqWrap.onresolve [as oncomplete] (node:internal/dns/promises:293:17) { errno: undefined, code: 'ENOTFOUND', syscall: 'querySrv', hostname: '_mongodb._tcp.3132'

  • @Aravindlaptop
    @Aravindlaptop 17 วันที่ผ่านมา

    Sir meku nen enni thanks chepina thakuavey ❤️🙏....... thanks for sharing valuable videos💗🙏

  • @praveenkumar-qp6me
    @praveenkumar-qp6me 17 วันที่ผ่านมา

    React midha kuda interview questions cheyyandi sir, thank you

  • @lakshminarayanajavvadhi5875
    @lakshminarayanajavvadhi5875 17 วันที่ผ่านมา

    sir naku 2 doubts. 1. endhuku queryselector ni use chesaru 2. already navborder aney variable lo document ni get chesaka function lo kuda endhuku use chesaru

  • @saikirankollimalla9040
    @saikirankollimalla9040 18 วันที่ผ่านมา

    sir waiting for your django tutorials sir

  • @User_ID371
    @User_ID371 18 วันที่ผ่านมา

    Sir, ReactJS lo project create chesthunte error vasthundi. Adi Enduku and ela resolve cheyyalo oka chinna video gani leda ee comment ki reply gaani ivvandi sir please!

    • @teluguwebtechtutorials
      @teluguwebtechtutorials 18 วันที่ผ่านมา

      Try "vite" to install "React" The command is npm create vite@latest

    • @User_ID371
      @User_ID371 18 วันที่ผ่านมา

      @@teluguwebtechtutorials Yeah sir, but when tried to use a command "npx create-react-app" the error occurred. Any solution for this particular error or we have to create using Vite? Please explain sir

  • @KrishnaReddy-vz4cn
    @KrishnaReddy-vz4cn 18 วันที่ผ่านมา

    Thank you sir

  • @lakshminarayanajavvadhi5875
    @lakshminarayanajavvadhi5875 18 วันที่ผ่านมา

    import React, { useState, useEffect } from 'react'; const StateMgm = () => { const [city, useCity] = useState("Hyderabad"); useEffect(() => { if (city === "Hyderabad") { useCity("Mumbai"); } else{ useCity("Delhi"); } // No further updates after "Delhi" }, [city]); return ( <div> <h1>I live in {city}</h1> </div> ); }; export default StateMgm; output mumbai ravadam ledhu sir what is the mistake in my code

    • @teluguwebtechtutorials
      @teluguwebtechtutorials 18 วันที่ผ่านมา

      Below is the corrected code for ouput "Mumbai" import React, { useState, useEffect } from 'react'; const StateMgm = () => { const [city, setCity] = useState("Hyderabad"); useEffect(() => { if (city === "Hyderabad") { setCity("Mumbai"); } }, []); return ( <div> <h1>I live in {city}</h1> </div> ); }; export default StateMgm;

    • @lakshminarayanajavvadhi5875
      @lakshminarayanajavvadhi5875 18 วันที่ผ่านมา

      @teluguwebtechtutorials sir meeru chala Baga chepthunnaru sir....Inka continue cheyyandii Thank you soo muchh

  • @ramyakrishnatumati4856
    @ramyakrishnatumati4856 18 วันที่ผ่านมา

    I have small doubt in c or c++ we will have garbage values don't we have them in JS?

    • @teluguwebtechtutorials
      @teluguwebtechtutorials 18 วันที่ผ่านมา

      In JavaScript, garbage values as seen in C or C++ do not exist in the same way. This is because JavaScript handles memory management differently.

  • @Raveendra-s8s
    @Raveendra-s8s 19 วันที่ผ่านมา

    sir API documentation Removed ?

    • @teluguwebtechtutorials
      @teluguwebtechtutorials 19 วันที่ผ่านมา

      Now its available. sorry i haven't noticed, Thank you for notifying me.

    • @teluguwebtechtutorials
      @teluguwebtechtutorials 19 วันที่ผ่านมา

      kalyantwt.blogspot.com/2024/03/mern-stack-multi-vendor-restaurant.html

  • @KoturuKrishna_knb
    @KoturuKrishna_knb 19 วันที่ผ่านมา

    super the way of explanation