Operator Overloading in Python | Polymorphism | Python Tutorials for Beginners

  Рет қаралды 49,340

Jenny's Lectures CS IT

Jenny's Lectures CS IT

Күн бұрын

Пікірлер: 87
@shatmanyugupta
@shatmanyugupta Жыл бұрын
Have watched your videos in my BTech , passed with 1st division , now switching companies and here i am again , Thanks mam for all your efforts putting those concepts in a very lucid manner.
@koresanthosh3138
@koresanthosh3138 8 ай бұрын
Is is brother
@u.aphrodis2175
@u.aphrodis2175 Жыл бұрын
Hi, Jenny🤗🤗 I'm your student from Rwanda. You save my time, I don't run around trying to understand concept all I need is to directly jump inside your class. Thank you for your support. When we meet I'll buy you a coffee. "fun fact, you look us like we have refused to submit homework🤭🤭🤭"
@Geethabhagyasri
@Geethabhagyasri 10 күн бұрын
your teaching style ressembles TELUSKO channel..your voice is soothing to learn the concepts ..
@ebubechukwuuchechukwu6018
@ebubechukwuuchechukwu6018 2 ай бұрын
class ComplexNumber: def __init__(self,r,c): self.real = r self.imaginary = c def __add__(self, other): return (str(self.real + other.real) + ' + '+ str(self.imaginary + other.imaginary) + 'i') c1 = ComplexNumber(1,2) c2 = ComplexNumber(3,4) print(c1+c2)
@srinivasrao8016
@srinivasrao8016 7 ай бұрын
This is called clear cut explanation. TQ. I will go through all the videos. It is depth leacture.
@ashishvasava8265
@ashishvasava8265 Жыл бұрын
Super Teaching 🎉🎉🎉
@Ummehani-e5m
@Ummehani-e5m Жыл бұрын
Great mam,U are teaching very nice and we are getting a good Knowledge
@nitheeshaboggavarapu9302
@nitheeshaboggavarapu9302 Жыл бұрын
Ma'am, could you create a playlist about full-stack development? It'll benefit everyone.
@masudsarrowar
@masudsarrowar Жыл бұрын
Great Ma'am. Please make a playlist on Java.
@ananthu4141
@ananthu4141 6 ай бұрын
return str(int(self.real + other.real)) + " + " + str(int(self.image + other.image)) + "i"
@DesuSuhithaReddy
@DesuSuhithaReddy 11 ай бұрын
if p1.age>p2.age: print(f"{p1.name} will pay the bill") else: print(f"{p2.name} will pay the bill") without operator overloading we can write like this mam
@sudheervennapu309
@sudheervennapu309 Жыл бұрын
Thanks Jenny Mam for your efforts
@murthysatti2035
@murthysatti2035 19 күн бұрын
Mam i have a doubt , please clarify If we perform at 9.47 min Print(f"{c1.x+c2.x} + {c1.y+c2.y}i") It will add the objects and give complex number right. Then what is the point of using dunder method
@vamshitwilight1012
@vamshitwilight1012 Жыл бұрын
This is a great video madam
@Manpreet_saini696
@Manpreet_saini696 Жыл бұрын
Thank you mam for teaching advance python
@pkmotivation203
@pkmotivation203 Жыл бұрын
“ज़िन्दगी तो सभी के लिए एक जैसी है ! 🙌☀️ फ़र्क सिर्फ इतना है कि कोई दिल से जी रहा है तो कोई दिल रखने के लिए जी रहा है !! 🙂😉” 🙃😊🤗💐
@nidhibhatia5837
@nidhibhatia5837 Жыл бұрын
Bhai tu kitna gyan deta hai maza aa gaya😂😂
@pkmotivation203
@pkmotivation203 Жыл бұрын
@@nidhibhatia5837 सच बात तो यह है की जो परेशानी से गुजरकर आता है उसे पता होता है की परेशानी कहा से आएगी और मै तो परेशानी का घर हू एक जाति है दूसरी तैयार खड़ी होती है सिर्फ पहली के जाने की देर होती हो
@SidharthNaik11
@SidharthNaik11 8 ай бұрын
Thanks for the good explanation!!😊
@Nothing-78646
@Nothing-78646 5 ай бұрын
really helpfull mam.........thank you so much.........student from Pakistan
@AmarSingh-pf3mq
@AmarSingh-pf3mq 6 ай бұрын
wonderful teaching skills
@Prkshashank7676
@Prkshashank7676 Жыл бұрын
Jenny make these videos as a playlist so we beginners can learn watching one by one
@JennyslecturesCSIT
@JennyslecturesCSIT Жыл бұрын
These are already in playlist...u please check out python playlist
@Prkshashank7676
@Prkshashank7676 Жыл бұрын
@@JennyslecturesCSIT yes but Jenny 106 videos are in the playlist but previous 2 videos i:e today's and the previous one is not in the playlist please check it and thanks for your videos it helps a lot 💗
@JennyslecturesCSIT
@JennyslecturesCSIT Жыл бұрын
Is it so...okay I will check and add these too
@Prkshashank7676
@Prkshashank7676 Жыл бұрын
@@JennyslecturesCSIT tqq so much keep making videos more and more like this
@bheem05
@bheem05 Жыл бұрын
The video is fantastic
@butterflyworld5693
@butterflyworld5693 Жыл бұрын
Please make a video on exception handling i think that is the most important...
@sudheernani143
@sudheernani143 Жыл бұрын
This is a very good video
@Marvelkashmir
@Marvelkashmir Жыл бұрын
Mam JAVA please ❤❤❤❤
@amazingstorymaker9728
@amazingstorymaker9728 Жыл бұрын
Excellent
@Laylavybez
@Laylavybez Жыл бұрын
Thank you so much for this, it helped a lot. However, i used the following code for the operational overload and it ran, i thought i should share, is there any limitation to this code? class Player: def __init__(self, name, age): self.name = name self.age = age #This is the code i am referring to def __gt__(self, other): if p1.age > p2.age: return True else: return False #ends here p1 = Player("Ahmad", 45) p2 = Player("Layla", 40) if p1 > p2: print(f"{p1.name} will pay the bill") else: print(f"{p2.name} will pay the bill")
@rahulranjan8682
@rahulranjan8682 11 ай бұрын
great explanation!
@FARMHOUSE_GANGSTERS
@FARMHOUSE_GANGSTERS Жыл бұрын
Nice explanation ❤ mam
@vikneshswag1151
@vikneshswag1151 5 ай бұрын
Hi Jenny, I think you watched Telusko Channel for this . Anyway In Telusko channel this concept is not clear but you explained well. Thank You
@AquaGamer777
@AquaGamer777 Жыл бұрын
WE CAN ALSO DO LIKE THIS class Person: def __init__(self, name, age): self.name = name self.age = age p1 = Person('Ram', 32) p2 = Person('Shyam', 23) if p1.age > p2.age: print(f'{p1.name} will pay the bill') else: print(f'{p2.name} will pay the bill')
@yasothakarthikeyan9604
@yasothakarthikeyan9604 Жыл бұрын
Mam plz teach Dijiktra algm , travelling salesman using backtrack, 0/1 knapsack, 8 queens pblm using backtrack,sum of subset problem using backtrack all are wanted in C++ program coding Mam plz reply
@a2zvlogs389
@a2zvlogs389 Жыл бұрын
Just awesome 👌
@layphyuhein9494
@layphyuhein9494 Жыл бұрын
Please explain Quadratic Assignment Problem in C Programming
@ashishvasava8265
@ashishvasava8265 Жыл бұрын
😮😮😮
@Harry-dd5ci
@Harry-dd5ci Жыл бұрын
Areeeee mam aaaap mane 12th complete kar liye hai, Mam muje cybersecurity me Jana hai and for that I am learning Networking right now, Can you please suggest me, Is there any complex mathematical stuff is involved or not in Cybersecurity
@ManishaMick-kw9pb
@ManishaMick-kw9pb 19 күн бұрын
class Person: def __init__(self,name,age): self.name=name self.age=age def __gt__(self, other): if self.age>other.age: return f"{self.name} will pay the Bill" else: return f"{other.name} will pay the Bill" p1=Person("Ram",20) p2=Person("Shyam",10) print(p1>p2)
@nikhildhakad2902
@nikhildhakad2902 Жыл бұрын
Mam please make the lengthy session and completed it as soon as
@RAJPUTMANHAS-z1k
@RAJPUTMANHAS-z1k Ай бұрын
Hayee kitni cute hai😘😘😘😘
@siddharthtiwari4546
@siddharthtiwari4546 Жыл бұрын
Mam Pls teach in my Clg also , Students will enjoy ur teaching
@PookieThisSide-d9c
@PookieThisSide-d9c Жыл бұрын
Mam make a tutorial on js
@pkmotivation203
@pkmotivation203 Жыл бұрын
तेरे खिलाफ़ क्या तूफ़ान, 💐 क्या आँधी और क्या सूनामी करेंगे … 🌻😊 आज बाधा बनके जो खड़े हैं, 🙂 कल तुझे ये सलामी करेंगे … 🌻🌷 प्रवीन कुमार
@SimranBhardwaj-pz7od
@SimranBhardwaj-pz7od Жыл бұрын
Mam please complete c++ course too
@SirishAllam
@SirishAllam Жыл бұрын
Thank you but do in the system and that can help very much madam also madam for more clarification
@harshpandey6618
@harshpandey6618 Жыл бұрын
❤❤
@ravadarajasehkar5497
@ravadarajasehkar5497 Жыл бұрын
Mam ,plz suggest me the best book (or website)to learn python
@telugutejassu5376
@telugutejassu5376 Жыл бұрын
Please change your spectacles
@srivatsak1877
@srivatsak1877 Жыл бұрын
I guess you're supposed to concentrate on what she's teaching!!
@rameeskv-qu2ib
@rameeskv-qu2ib Жыл бұрын
What if when 3 argument passed
@sagarsajjan4119
@sagarsajjan4119 Жыл бұрын
Mam in how many days python get fully complete ??
@swagprincess5547
@swagprincess5547 Жыл бұрын
If you put hard word you will finish in 30 days also🤝💥
@PraneshGangarapu
@PraneshGangarapu 9 ай бұрын
Write code in cpp language only
@Helinsalih-rm5iw
@Helinsalih-rm5iw 5 ай бұрын
thank youuuuu🤍
@junaidanwer9456
@junaidanwer9456 Жыл бұрын
why i am watching this video 😄😄😄
@bala_murugan.
@bala_murugan. Жыл бұрын
😂😂
@letslearnwithtogether595
@letslearnwithtogether595 Жыл бұрын
Ma'am, When will u start JAVA ?
@JennyslecturesCSIT
@JennyslecturesCSIT Жыл бұрын
Haven't planned yet
@letslearnwithtogether595
@letslearnwithtogether595 Жыл бұрын
@@JennyslecturesCSIT The way u teach coding no one is able to teach in world 🌎. That's why we hope u will teach JAVA as well . Thank u !
@kalepatil-cv5ly
@kalepatil-cv5ly Жыл бұрын
how many lectures left mam from this viedo....
@reignsgaming07
@reignsgaming07 Жыл бұрын
Aap pc pe practical krke btaya kro
@JennyslecturesCSIT
@JennyslecturesCSIT Жыл бұрын
Watch complete video before commenting...
@SAIHACKS-s3i
@SAIHACKS-s3i Жыл бұрын
Mam love you so much mam
@nidhibhatia5837
@nidhibhatia5837 Жыл бұрын
Control😂
@SAIHACKS-s3i
@SAIHACKS-s3i Жыл бұрын
Hello madam is madam not about any bad k
@shivakrishna_varma9658
@shivakrishna_varma9658 4 ай бұрын
"1"+"2"="12"
@coding_with_bf
@coding_with_bf Жыл бұрын
It's needed to go to white board for good understanding 😢😢😢😢
@jaihindh609
@jaihindh609 Жыл бұрын
I love you madam❤❤❤❤❤❤❤❤❤❤
@AdityaSingh-ho2kk
@AdityaSingh-ho2kk Жыл бұрын
12
@srgokhle
@srgokhle Жыл бұрын
Don't try to =
@leonelmessi7897
@leonelmessi7897 10 ай бұрын
Not understanding mam😢😢😢
@benugopalkanjilal2567
@benugopalkanjilal2567 5 ай бұрын
"1212"
@mastercheif3029
@mastercheif3029 10 ай бұрын
You're beautiful.
@DeadlyMan80
@DeadlyMan80 Жыл бұрын
Hindi me lecture lete to maja aaja ta hum bhi subscribe kar lete 😒
@babamusic8538
@babamusic8538 Жыл бұрын
Mam speak slow
@fakenoob192
@fakenoob192 Жыл бұрын
🫢
@veereshvastrad3501
@veereshvastrad3501 Жыл бұрын
Cutie pie Jenny mam
@nidhibhatia5837
@nidhibhatia5837 Жыл бұрын
What😂😂😂
@SelvaNidharshana
@SelvaNidharshana 11 ай бұрын
12
@ronogaming2453
@ronogaming2453 6 ай бұрын
12
@Dancing67-gi5su
@Dancing67-gi5su 4 ай бұрын
12
@sonufazi8977
@sonufazi8977 3 ай бұрын
12
Method Overloading and Method Overriding| Python Tutorials for Beginners #lec105
17:46
Bitwise Operators in Python (Part 1)
9:21
Neso Academy
Рет қаралды 52 М.
小丑教训坏蛋 #小丑 #天使 #shorts
00:49
好人小丑
Рет қаралды 54 МЛН
“Don’t stop the chances.”
00:44
ISSEI / いっせい
Рет қаралды 62 МЛН
Abstract Class & Abstract Method in Python | Python Tutorials for Beginners #lec99
26:38
AsyncIO, await, and async - Concurrency in Python
9:12
Socratica
Рет қаралды 120 М.
Polymorphism in Python | Introduction | Python Tutorials for Beginners #lec102
10:20
Comparison Operators in Python
9:12
Neso Academy
Рет қаралды 31 М.
Operator Overloading in C++ Programming | C++ Programming for Beginners
13:32
What exactly is 'self' in Python? [Easy explanation]
6:27
Indently
Рет қаралды 54 М.
Learn Any Programming Language In 3 Hours!
22:37
Code With Huw
Рет қаралды 640 М.