- 306
- 1 818 401
Telugu WebTech
India
เข้าร่วมเมื่อ 2 ธ.ค. 2021
**Welcome to Telugu WebTech!**
On this channel, I share my expertise in **Web Development**, **UI/UX Design**, and **Digital Marketing** to help developers, entrepreneurs, and tech enthusiasts grow their skills. Whether you're a beginner or an experienced professional, you'll find valuable tutorials, tips, and insights on topics like **React.js**, **Next.js**, **MongoDB**, and **freelancing strategies**.
I also offer **free web development courses**, **step-by-step tutorials**, and **hands-on projects** that cover the latest industry trends. With over 5 years of experience as a developer and consultant, I’m here to guide you through mastering coding, building responsive websites, and improving your digital marketing game.
Subscribe to stay updated on new videos covering development best practices, tutorials, and tools to elevate your career or business.
**Let’s build something amazing together!**
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
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
thank you so much.good content
Tq
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?
DSA using python videos cheyandi
Anna ee mongodb lo backend ela rayali store cheyalo chepparaa
Please check out this video th-cam.com/video/jVGWmqg418I/w-d-xo.html
Can you please start java full stack course after this..
Sure, i will 👍
Love from USA 🇺🇸 🇮🇳
Web page loo ela vastundi anna konchem explain cheyyav a
Anna output ela chudali 😢
document.write()
Thanks bro Its helped alot while practicing
I really appreciate that you really taught very nicely. Thank you so much🎉🎉🎉🎉
Amazing playlist on React in Telugu, thankyou for @TeluguWebTech
Nice explanation sir
react mottam entey na enka unda?
Way of teaching very very extordinary
sir arrey ki var ana conset ana thisukovacha ledha let ookati thisukovala
very useful brother thank you
If a date is already booked, then availability should not be shown for that date
Well understood bro
sir payment option ledha
bro pre-increment inkka pre-decrement kossam cheppaledhu
Thank you sir I am student I am studying in 8th class
All the best ☺️
thanks for your explanation.Its really helpful
react medha kooda cheyandi
Nice explanation Bro
MySQL videos cheyandi sir ..❤
ctrl+d not working to select all the classes
First select one portion and hit ctrl D it highlights all similar code
Excellent explanation. thanks lot
What you are telling about concept on react is super sir .The way if coaching good sir.
Please make a videos of react native sir
waiting for your django course sir
why its kept ? Var and let.. almost both are same.what difference it makes if declared multiple times or not
"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"
Please upload videos fastly sir
Sorry for delay, I'll make fast
@teluguwebtechtutorials thank u sir
Thank you sir waiting for the next video
Its nice and clear Explanation . Thank you very much completed whole course.
bro please make tutorials on react native
Sir eppudu cookies and sessions use chesi Authentication cheyala Leda jwttokens use cheyala
plese start microservices in the node js
Sir react js notes provide cheyaraa. Sir meeru
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'
Sir meku nen enni thanks chepina thakuavey ❤️🙏....... thanks for sharing valuable videos💗🙏
React midha kuda interview questions cheyyandi sir, thank you
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
sir waiting for your django tutorials sir
Sure, coming soon
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!
Try "vite" to install "React" The command is npm create vite@latest
@@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
Thank you sir
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
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;
@teluguwebtechtutorials sir meeru chala Baga chepthunnaru sir....Inka continue cheyyandii Thank you soo muchh
I have small doubt in c or c++ we will have garbage values don't we have them in JS?
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.
sir API documentation Removed ?
Now its available. sorry i haven't noticed, Thank you for notifying me.
kalyantwt.blogspot.com/2024/03/mern-stack-multi-vendor-restaurant.html
super the way of explanation