What is Object Oriented Programming in Python - OOPS in Python | Complete Tutorial

  Рет қаралды 145,595

WsCube Tech

WsCube Tech

Күн бұрын

Пікірлер: 49
@wscubetech
@wscubetech 2 жыл бұрын
😎Hey, thanks for watching! We’d love to know your thoughts/doubts here in the comments. 🔴 To learn Python Programming online with regular LIVE CLASSES, enroll now: forms.gle/uLFMXsV7jzjgwTJY7 👉For professional self-paced certification courses (pre-recorded), visit: bit.ly/Pre-Recorded-Course 👉Don’t forget to SUBSCRIBE our channel for more such videos & valuable content: bit.ly/KZbin-WsCubeTech
@saurabhsingh-hd4fv
@saurabhsingh-hd4fv Жыл бұрын
Very well explained, I have watched oops concept at so many places on youtube but there is no compare of others with this one. This is called the proper teaching where you are able to explain the concepts to layman person as well.
@bahlolahmad9634
@bahlolahmad9634 Жыл бұрын
At last koi mila jo samjha saka. Thank you so much
@selenophile6688
@selenophile6688 Жыл бұрын
I just can't explain my gratitude towards you sir....I have watched 8-9 yt videos on oops but didn't understand a single point..... finally after this video I'm understanding it..... thankyou so much sir❤️🤗
@santanubhattacharya9865
@santanubhattacharya9865 Жыл бұрын
Thank you vaiya ... finally cleared many doubts about OOP ..
@RAJVEERBIRADAR360
@RAJVEERBIRADAR360 Жыл бұрын
agar aapko class aur object ka example nahi samha toh aise samjho Class ek blueprint ya template hoti hai jo ek ya ek se adhik objects ko banane mein madad karti hai. jaise class car ek blueprint hai car ka jise aap ek se aadhik object bana sakte ho matla ab aap us blueprint se kitne bhi car bana sakte ho
@RadhaRani-x2p5t
@RadhaRani-x2p5t 7 ай бұрын
Very nice, this is explained in the perfect way
@rohinisingh6916
@rohinisingh6916 Жыл бұрын
Outstanding explanation sir..
@satishb9975
@satishb9975 Жыл бұрын
Thank you finally got the oops concepts great explanation for beginners 🎉❤❤😊
@pushpaonfire4353
@pushpaonfire4353 Жыл бұрын
@dishaglobal2574
@dishaglobal2574 2 жыл бұрын
Hello, I want to add something here, either you are using print() stmt or return stmt in the function. If you call a function , both will display the result without using print stmt.
@theanonymous92
@theanonymous92 2 жыл бұрын
I don't know if I got you wrong, but if I am right You are saying that print and return will do the same thing in func right? But, there is a difference 1. If you print something in function then you can simply call it and it will display the result For example, for function add def add(a,b): print(a+b) If I simply call it add(1,2) it will display --> 3 BUT if I write the same function using return def add(a,b): return a+b And call it add(1,2) --> it won't print anything Because you are just asking it to return the result not display it. so, to display it, you can either do something like store this return value in another variable and print it _____ result = add(1,2) print(result) --> now it will display 3 Or Simply write print (add(1,2)) --> it will also give you 3 Why? Because you asked for the result by calling add(1,2) and then you asked for displaying it by putting it in print statement print(add(1,2)) Hope it helps, and again if that wasn't what you were saying and I misunderstood you. Sorry for that.
@songsandlyrics9101
@songsandlyrics9101 Жыл бұрын
Not really Returnig & displaying are two diffrent things
@dakshbhardwaj7481
@dakshbhardwaj7481 3 ай бұрын
@@theanonymous92 return gives value to variable outside function if to assign function to that variable it you do not return it will give none on that variable so 30 and none if return it will give 30
@theanonymous92
@theanonymous92 3 ай бұрын
@@dakshbhardwaj7481 yeah, a bit unclear but you say right, And I said the same thing btw 1y old comments brings me back,😱🙂
@s.screation2277
@s.screation2277 11 ай бұрын
Very simple explanation
@HarshKumar-qy4im
@HarshKumar-qy4im Жыл бұрын
Sir best explanation ❤
@nitindhuliya678
@nitindhuliya678 Жыл бұрын
Thank you sooo much sir ji 🥳🥳 again
@shailytiwari3166
@shailytiwari3166 Жыл бұрын
Thank you sir 💐
@sa-vv5mc
@sa-vv5mc Жыл бұрын
superrrr
@rajeshpatil7716
@rajeshpatil7716 Жыл бұрын
Nice sir
@montisaini5972
@montisaini5972 3 жыл бұрын
Nice Work Sir Thankyou so much
@ShivamMalik261
@ShivamMalik261 10 ай бұрын
Camel case nhi sir it's pascap case btw good explanation thnx a lot sir
@anitashah831
@anitashah831 Жыл бұрын
Thanku sir
@jasbirnegi9213
@jasbirnegi9213 8 ай бұрын
@wscubetech A bit more explanation on OOPS topic will be much appreciated since this is the important one.
@VloggerHaseeb
@VloggerHaseeb 2 жыл бұрын
Finally learning oops 😂
@Ramashish-bf9oz
@Ramashish-bf9oz 7 ай бұрын
😂😂
@ananyayadav2774
@ananyayadav2774 7 ай бұрын
Sir your videos are really good. But somehow you have mistaken camelCase for PascalCase. The class name is written in PascalCase.
@Its_pro1101
@Its_pro1101 Жыл бұрын
Starting 2:01
@shayriroy6360
@shayriroy6360 3 жыл бұрын
nicely explained
@KB-dd3zu
@KB-dd3zu Жыл бұрын
I was not able to understand this lecture pls make this easy with easy examples😢😢😢😢
@udishabhardwaj3210
@udishabhardwaj3210 Жыл бұрын
Plz decoraters ki video bhi upload kijiye
@faiyazahmad21
@faiyazahmad21 2 жыл бұрын
Programming paradigm or types par full video details bna dijiye
@bcALIHUSSAN
@bcALIHUSSAN Жыл бұрын
DemoClass is Pascal Case demoClass is camel Case
@prashantbalyan12
@prashantbalyan12 Жыл бұрын
Yess !!
@virajsharma5589
@virajsharma5589 Жыл бұрын
sir Pascal Case 2:14
@m.tayaabkhan5693
@m.tayaabkhan5693 Жыл бұрын
Ye jo app likh rahy hain ye kis software main likh rahy hain because I'm newbie
@nizrocky1164
@nizrocky1164 Жыл бұрын
Let me check this out
@Zeenat-b7x
@Zeenat-b7x Жыл бұрын
sir hm pycharm pr work kr rhy hn but module ni ho rha is mn due to reason understand sir please
@m.tayaabkhan5693
@m.tayaabkhan5693 Жыл бұрын
Aur jub call Kerty hain tou kis main kerta hain kindly bta dain
@nazmakhan462
@nazmakhan462 3 жыл бұрын
I've a question do u reply to comments then I'll ask my question
@chaos8514
@chaos8514 2 жыл бұрын
are you learning this for a job?
@pjoshi4678
@pjoshi4678 2 жыл бұрын
Yes
@cs-anjan8763
@cs-anjan8763 Жыл бұрын
S u may
@akgamingff7791
@akgamingff7791 Жыл бұрын
Bhai tu same line ko baar baar repeat karke confuse na kiya kar
@sanwalmehmood6151
@sanwalmehmood6151 2 күн бұрын
"Prior to this video, everything was explained brilliantly with great concepts. However, this particular video is extremely poor in its teaching approach and fails to convey the intended message effectively."
@StudyPediaBySawan
@StudyPediaBySawan 11 ай бұрын
Not i understood this lecture
@kidstorytv1054
@kidstorytv1054 Жыл бұрын
Uups
@sagarrai7340
@sagarrai7340 2 жыл бұрын
.
Introduction to OOPs in Python | Python Tutorial - Day #56
15:54
CodeWithHarry
Рет қаралды 362 М.
Hilarious FAKE TONGUE Prank by WEDNESDAY😏🖤
0:39
La La Life Shorts
Рет қаралды 44 МЛН
UFC 287 : Перейра VS Адесанья 2
6:02
Setanta Sports UFC
Рет қаралды 486 М.
БАБУШКА ШАРИТ #shorts
0:16
Паша Осадчий
Рет қаралды 4,1 МЛН
Object Oriented Programming - The Four Pillars of OOP
11:23
Keep On Coding
Рет қаралды 357 М.
OOP in Python | Object Oriented Programming
1:45:19
Telusko
Рет қаралды 1,8 МЛН
This Is Why Python Data Classes Are Awesome
22:19
ArjanCodes
Рет қаралды 822 М.
Class and Object in Python (Hindi)
52:37
Geeky Shows
Рет қаралды 172 М.
Python Object Oriented Programming (OOP) - For Beginners
53:06
Tech With Tim
Рет қаралды 3,5 МЛН
Intro to Object Oriented Programming - Crash Course
30:18
freeCodeCamp.org
Рет қаралды 990 М.
Object Oriented Programming in python
1:08:29
Chai aur Code
Рет қаралды 111 М.
Hilarious FAKE TONGUE Prank by WEDNESDAY😏🖤
0:39
La La Life Shorts
Рет қаралды 44 МЛН