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
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.
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 😊
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.
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")
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.
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,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)
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
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
self is not a keyword.
a self is an implicit object that contains the address of the current object.
class CarDesign:
pass
cardesign_1=CarDesign()
cardesign_2=CarDesign()
print(type(cardesign_1))
print(type(cardesign_2))
you are making me to love python programming maam.. Thanks for your amazing teaching maam
"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
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❤❤
Thanks!
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 ???
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)
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 😊
Thank you, I keep learning and learning. Very clear explanation and understandable.
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.
13:02 Madamji maan gaye , bahut hi badhiya sikhaya hai aaapne
Love from my side for giving beautiful and best contain 💌
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")
Appreciate your work! Great Explanation!
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.
Your voice usually gets me 🥺 when are you visiting this great country kenya😍
Thanks alot :)! alot easier to understand compared to other regarding this topic.
#1
class carDesign:
pass
obj_1 = Cardesign()
boj_2 = CarDesign()
print(type(obj_1))
print(type(obj_2))
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__
Thaank youji for this lecture. Pl take sql also. Shree raaam be always be with you.
Very good content ❤
I wish you taught me every subject,😅
hello mam.after completing the program plz zoom out screen,so we can note down properly
Amazing Video.
Thank you Mam.
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 ()
Mam l need about standard deviation and varience theory information plz one help
how many more video of python you have more
Hello mam do you have any idea about react or angular tutorial.
Mam i love you❤️
Cool as a teacher ❤
If you are watching this video and even you are not interested in Python then hit that like button. we are same
Mam do on java classes for degree pls mam
Nice explanation 👌 👍 👏, and you are So gorgeous 😍 ❤
You are looking so cool ao i reads with you ❤
Ma'am thank you so much...I have search alots on UA-cam but you explain in very easy way...❤❤
when will be the course end how many more video
Function call and class initialisation both look the same😅.😂i dont know why they change these syntaxes so much
Numpy bta dijiye please?next video me
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
How many more videos it take to complete this course?mam
Super teaching all the way from Karnataka
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
😍💗
its like structure in c right?
1st viewer
mam biothec walo ko mt bhula kro.. hum bhi seekhne aate hein
hello...your voice is very low,in video.
Hi you look stunning I mean in a nice way
😅
Mam notes
Hello ma'am can you teach in hindi?
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)
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