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.
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🤭🤭🤭"
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
@@nidhibhatia5837 सच बात तो यह है की जो परेशानी से गुजरकर आता है उसे पता होता है की परेशानी कहा से आएगी और मै तो परेशानी का घर हू एक जाति है दूसरी तैयार खड़ी होती है सिर्फ पहली के जाने की देर होती हो
@@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 💗
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")
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
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')
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
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.
Is is brother
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🤭🤭🤭"
return str(int(self.real + other.real)) + " + " + str(int(self.image + other.image)) + "i"
This is called clear cut explanation. TQ. I will go through all the videos. It is depth leacture.
Great Ma'am. Please make a playlist on Java.
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
Great mam,U are teaching very nice and we are getting a good Knowledge
Ma'am, could you create a playlist about full-stack development? It'll benefit everyone.
Super Teaching 🎉🎉🎉
“ज़िन्दगी तो सभी के लिए एक जैसी है ! 🙌☀️
फ़र्क सिर्फ इतना है कि कोई दिल से जी रहा है
तो कोई दिल रखने के लिए जी रहा है !! 🙂😉” 🙃😊🤗💐
Bhai tu kitna gyan deta hai maza aa gaya😂😂
@@nidhibhatia5837 सच बात तो यह है की जो परेशानी से गुजरकर आता है उसे पता होता है की परेशानी कहा से आएगी
और मै तो परेशानी का घर हू एक जाति है दूसरी तैयार खड़ी होती है
सिर्फ पहली के जाने की देर होती हो
really helpfull mam.........thank you so much.........student from Pakistan
Thanks Jenny Mam for your efforts
Please make a video on exception handling i think that is the most important...
This is a great video madam
Excellent
wonderful teaching skills
Thank you mam for teaching advance python
This is a very good video
The video is fantastic
Thanks for the good explanation!!😊
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)
Jenny make these videos as a playlist so we beginners can learn watching one by one
These are already in playlist...u please check out python playlist
@@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 💗
Is it so...okay I will check and add these too
@@JennyslecturesCSIT tqq so much keep making videos more and more like this
Mam JAVA please ❤❤❤❤
Nice explanation ❤ mam
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")
great explanation!
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
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
Please explain Quadratic Assignment Problem in C Programming
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')
Just awesome 👌
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
Mam please make the lengthy session and completed it as soon as
तेरे खिलाफ़ क्या तूफ़ान, 💐
क्या आँधी और क्या सूनामी करेंगे … 🌻😊
आज बाधा बनके जो खड़े हैं, 🙂
कल तुझे ये सलामी करेंगे … 🌻🌷
प्रवीन कुमार
Mam make a tutorial on js
Thank you but do in the system and that can help very much madam also madam for more clarification
What if when 3 argument passed
Mam ,plz suggest me the best book (or website)to learn python
😮😮😮
why i am watching this video 😄😄😄
😂😂
Please change your spectacles
I guess you're supposed to concentrate on what she's teaching!!
Mam please complete c++ course too
❤❤
Mam Pls teach in my Clg also , Students will enjoy ur teaching
Mam in how many days python get fully complete ??
If you put hard word you will finish in 30 days also🤝💥
Ma'am, When will u start JAVA ?
Haven't planned yet
@@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 !
how many lectures left mam from this viedo....
Aap pc pe practical krke btaya kro
Watch complete video before commenting...
thank youuuuu🤍
Write code in cpp language only
Mam love you so much mam
Control😂
Hello madam is madam not about any bad k
It's needed to go to white board for good understanding 😢😢😢😢
"1"+"2"="12"
Not understanding mam😢😢😢
12
Don't try to =
I love you madam❤❤❤❤❤❤❤❤❤❤
Hindi me lecture lete to maja aaja ta hum bhi subscribe kar lete 😒
"1212"
You're beautiful.
Mam speak slow
🫢
Cutie pie Jenny mam
What😂😂😂
12
12
12
12