There are several teachers who complicate even simple topics and make it hard to learn along with personally insulting students not able to understand programming,crippling their confidence saying they will never be able to understand programming😡but a teacher like you makes even a very hard topic easy to understand which is what great teaching is all about. In my school and college wish there was a teacher like you if it was so I'd have been in a wonderful position in software industry!!plz upload a video explaining decorators,generators,metaclasses,concurrency and parallelism
I have searched a lot of contents to understand OOPS in python....but i was not able to understand their explanations....but today I am getting all the concepts.... mam you are great......your explanation is crystal clear...Thank you so much mam
00:02 Discussing the __init__() method and adding attributes to a class in Python. 02:10 Classes in Python are user-defined data types with a blueprint to create objects 04:17 Using classes and __init__ method to store attributes for different instructors 06:38 Constructor in Python initializes data members when an object is created 08:47 The __init__() method initializes object attributes in Python. 11:05 Understanding the self and __init__() method in Python 13:31 The self and __init__() method in Python is used to initialize objects and bind attributes to arguments. 15:45 Using default parameter values in Python for class attributes Crafted by Merlin AI.
simple way of explaining things whithout confusing and hiding the concepts, very good , keep going, expecting more videos on core concepts of python and web design.
I really really loved ur video because of ur examples ❤....i have zero knowledge in program but i switch my job in IT ... that's why i studying python now......in py everything is an object but class?u said one ex idly maker❤..... Thanks alottttt mam❤❤
Your classes have crystal clear and simple explanation which is highly appreciated... Just a small correction (not at all to demotivate) "self" is not keyword, instead of self we can use any word, but users are recommended to use "self" since it's common most spoken term in python dev community.
I saw numerous videos to understand __init__ method and self, then came across PyLenin videos, got some idea and then finally saw this video and it has become crystal clear now, thank you so much for this brilliant video, can you tell which IDE you are using, is it IntelliJ. I use Jupyter Notebook but there I don't get the hint and color differentiation.
Hello mam it's a highly request please make a video in embedded system how it works , where to use how to master and what are scopes for it how to adapt it please make video on it 😊
class CarDesign: def __init__(self,name,color,model): self.name = name self.color = color self.model = model car1 = CarDesign("Thar","Black","1500CC") car2 = CarDesign("Fortuner","white","3000cc")
Madam pls guide for major difference between __new__ and __init__ If __init__ is also a auto-constructor and initializer then why we use __new__ What is the benefit of using __new__ and what problem we face if we Do not use __new__
literally ,you are just awesome ..MAM the way you teach, no one gonna be yeah actually i find some error in your english but its ok agar madam esi ho toh sab chalega
class Instructor: def __ init __(self ,instructor _name, address): self .name =instructor _name self .address =address self .followers =0 Instructor_1=Instructor("Jenny" ,"Gurgaon") print("The first Instructor is:") print(Instructor_1.name) print(Instructor_1.address) print(Instructor_1.followers) Instructor_2=Instructor("Yagnavalki" ,"Hyderabad") print("The Second Instructor is:") print(Instructor_2.name ,'from',Instructor_2.address ,'with followers as ',Instructor_2.followers) Output:- The first Instructor is: Jenny Gurgaon 0 The Second Instructor is: Yagnavalki from Hyderabad with followers as 0
class Instructor: def __init__(self,name,anime): self.name=name self.anime=anime self.followers=0 Instructor_1=Instructor("luffy",'OnePieece') Instructor_2=Instructor("Naruto",'Naruto') Instructor_3=Instructor("Tanjiro",'DemonSlayer') Instructor_4=Instructor("Goku",'DragonBalz') list=[Instructor_1,Instructor_2,Instructor_3,Instructor_4] for data in list: print(data.name, ' from' ,data.anime)
There are several teachers who complicate even simple topics and make it hard to learn along with personally insulting students not able to understand programming,crippling their confidence saying they will never be able to understand programming😡but a teacher like you makes even a very hard topic easy to understand which is what great teaching is all about. In my school and college wish there was a teacher like you if it was so I'd have been in a wonderful position in software industry!!plz upload a video explaining decorators,generators,metaclasses,concurrency and parallelism
Thanks!
I have searched a lot of contents to understand OOPS in python....but i was not able to understand their explanations....but today I am getting all the concepts.... mam you are great......your explanation is crystal clear...Thank you so much mam
"Your Python videos have been a game changer for my learning journey. Thanks for making complex topics accessible and enjoyable!"
I have never seen a great trainer like you. You are the best. Thanks a lot
you are making me to love python programming maam.. Thanks for your amazing teaching maam
00:02 Discussing the __init__() method and adding attributes to a class in Python.
02:10 Classes in Python are user-defined data types with a blueprint to create objects
04:17 Using classes and __init__ method to store attributes for different instructors
06:38 Constructor in Python initializes data members when an object is created
08:47 The __init__() method initializes object attributes in Python.
11:05 Understanding the self and __init__() method in Python
13:31 The self and __init__() method in Python is used to initialize objects and bind attributes to arguments.
15:45 Using default parameter values in Python for class attributes
Crafted by Merlin AI.
class CarDesign:
pass
cardesign_1=CarDesign()
cardesign_2=CarDesign()
print(type(cardesign_1))
print(type(cardesign_2))
simple way of explaining things whithout confusing and hiding the concepts, very good , keep going, expecting more videos on core concepts of python and web design.
I really really loved ur video because of ur examples ❤....i have zero knowledge in program but i switch my job in IT ... that's why i studying python now......in py everything is an object but class?u said one ex idly maker❤..... Thanks alottttt mam❤❤
this is my 5th lacture about instrucroe and did not understood.but now i am fully understood. thank u a lot
Your classes have crystal clear and simple explanation which is highly appreciated...
Just a small correction (not at all to demotivate) "self" is not keyword, instead of self we can use any word, but users are recommended to use "self" since it's common most spoken term in python dev community.
Bro how u know this ???
self is not a keyword.
a self is an implicit object that contains the address of the current object.
I saw numerous videos to understand __init__ method and self, then came across PyLenin videos, got some idea and then finally saw this video and it has become crystal clear now, thank you so much for this brilliant video, can you tell which IDE you are using, is it IntelliJ. I use Jupyter Notebook but there I don't get the hint and color differentiation.
Appreciate your work! Great Explanation!
Thank you, I keep learning and learning. Very clear explanation and understandable.
Mam are you from Gurgoan? Actually I am from Manipur right now I am in Gurgoan 😊.You teaching style is too helpful to me
Very good content ❤
Your voice usually gets me 🥺 when are you visiting this great country kenya😍
Hello mam it's a highly request please make a video in embedded system how it works , where to use how to master and what are scopes for it how to adapt it please make video on it 😊
13:02 Madamji maan gaye , bahut hi badhiya sikhaya hai aaapne
Thanks alot :)! alot easier to understand compared to other regarding this topic.
class Instructor:
def __init__(self,name,address):
self.name=name
self.address=address
instructor_1=Instructor("Akshu","Hyd")
print(instructor_1.name,instructor_1.address)
instructor_2=Instructor("Chinnu","Vizag")
print(instructor_2.name,instructor_2.address)
Amazing Video.
class CarDesign:
def __init__(self,name,color,model):
self.name = name
self.color = color
self.model = model
car1 = CarDesign("Thar","Black","1500CC")
car2 = CarDesign("Fortuner","white","3000cc")
Love from my side for giving beautiful and best contain 💌
Thaank youji for this lecture. Pl take sql also. Shree raaam be always be with you.
Thank you Mam.
Madam pls guide for major difference between __new__ and __init__
If __init__ is also a auto-constructor and initializer then why we use __new__
What is the benefit of using __new__ and what problem we face if we
Do not use __new__
why do we have to use self in this? Why can't we pass attributes directly into the class or methods like in static_method?
I wish you taught me every subject,😅
hello mam.after completing the program plz zoom out screen,so we can note down properly
class InstructorInfo:
def __init__(self,instructor_name,address,subject):
self.name=instructor_name
self.address=address
self.subject=subject
instructor_1=InstructorInfo('Jenny','Punjab','Computer')
print(f"{instructor_1.name}, {instructor_1.address}, {instructor_1.subject}")
instructor_2=InstructorInfo('Payal','Delhi','Science')
print(f"{instructor_2.name}, {instructor_2.address}, {instructor_2.subject}")
how many more video of python you have more
If you are watching this video and even you are not interested in Python then hit that like button. we are same
Mam i love you❤️
Cool as a teacher ❤
when will be the course end how many more video
Hello mam do you have any idea about react or angular tutorial.
Mam do on java classes for degree pls mam
You are looking so cool ao i reads with you ❤
Nice explanation 👌 👍 👏, and you are So gorgeous 😍 ❤
class Instructor:
def __init__(self, instructor_name, address):
self.name = instructor_name
self.address = address
Instructor1=Instructor("victor", "market road")
Instructor2=Instructor("David", "hostel writing code")
print("Address: {}".format(Instructor1.address))
print("Name: {}".format(Instructor1.name))
print("Address: {}".format(Instructor2.address))
print("name: {}".format(Instructor2.name))
Hi
Did you explain the use of {}. format ()
😍💗
#1
class carDesign:
pass
obj_1 = Cardesign()
boj_2 = CarDesign()
print(type(obj_1))
print(type(obj_2))
Mam l need about standard deviation and varience theory information plz one help
Ma'am thank you so much...I have search alots on TH-cam but you explain in very easy way...❤❤
its like structure in c right?
Super teaching all the way from Karnataka
How many more videos it take to complete this course?mam
literally ,you are just awesome ..MAM
the way you teach, no one gonna be
yeah actually i find some error in your english but its ok
agar madam esi ho toh sab chalega
Numpy bta dijiye please?next video me
class Instructor:
def __ init __(self ,instructor _name, address):
self .name =instructor _name
self .address =address
self .followers =0
Instructor_1=Instructor("Jenny" ,"Gurgaon")
print("The first Instructor is:")
print(Instructor_1.name)
print(Instructor_1.address)
print(Instructor_1.followers)
Instructor_2=Instructor("Yagnavalki" ,"Hyderabad")
print("The Second Instructor is:")
print(Instructor_2.name ,'from',Instructor_2.address ,'with followers as ',Instructor_2.followers)
Output:-
The first Instructor is:
Jenny
Gurgaon
0
The Second Instructor is:
Yagnavalki from Hyderabad with followers as 0
Function call and class initialisation both look the same😅.😂i dont know why they change these syntaxes so much
Hi ma'am
How to installation Python in vs code please make videos on this topic
You dont install python on vscode. If python is in your path then jt should just work
mam biothec walo ko mt bhula kro.. hum bhi seekhne aate hein
1st viewer
hello...your voice is very low,in video.
Hello ma'am can you teach in hindi?
Self is not a keyword mam.
Mam notes
Hi you look stunning I mean in a nice way
😅
Link for exams
class Instructor:
def __init__(self,name,anime):
self.name=name
self.anime=anime
self.followers=0
Instructor_1=Instructor("luffy",'OnePieece')
Instructor_2=Instructor("Naruto",'Naruto')
Instructor_3=Instructor("Tanjiro",'DemonSlayer')
Instructor_4=Instructor("Goku",'DragonBalz')
list=[Instructor_1,Instructor_2,Instructor_3,Instructor_4]
for data in list:
print(data.name, ' from' ,data.anime)