Object Oriented Programming in python

แชร์
ฝัง
  • เผยแพร่เมื่อ 27 ธ.ค. 2024

ความคิดเห็น • 959

  • @swarnabhamajumder9561
    @swarnabhamajumder9561 10 หลายเดือนก่อน +65

    Learning Python Day 12 - present sir
    00:03 Object Oriented Programming is like making Gujiya
    01:58 Understanding object-oriented programming through generalized forms and classes.
    05:45 Follow naming conventions and indentation in Python classes.
    07:41 Understanding object creation and attributes in Python
    11:41 Understanding object-oriented programming in Python.
    13:36 Understanding the usage of variables and parameters inside a class in Python
    17:44 Method to display full name of car brand and model
    19:49 Object-oriented programming concepts in Python
    24:06 Creating object and setting up wireless connection
    25:55 Using inheritance and 'super' keyword to access parent class methods and attributes in Python
    29:34 Encapsulation is about controlling access to class attributes
    31:32 Creating methods for accessing and setting attributes in Python
    35:31 Encapsulation and its importance
    37:36 Polymorphism allows different behaviors for objects of the same class.
    41:16 Class variables keep track of shared data, like counting instances.
    43:32 Object creation and access in OOP Python
    47:44 Static method in Java is a method belonging to the class, not owned by an instance.
    49:52 Linking and Wiring in Object Oriented Programming
    53:32 Decorators in Python allow you to modify functions.
    55:19 Understanding data encapsulation and access control in object-oriented programming
    58:51 Understanding the usage of decorators in Python
    1:00:42 Understanding property decorators in Python.
    1:04:49 Inheritance in electric car programming
    1:06:54 Python supports classes, inheritance, and methods

  • @kaustubhgaikwad2562
    @kaustubhgaikwad2562 6 หลายเดือนก่อน +77

    4 months but still no 800 comments 😭 He is god level teacher .. help his channel grow

    • @Lalitkumar77.
      @Lalitkumar77. 4 หลายเดือนก่อน +1

      😮‍💨

    • @viditvats5733
      @viditvats5733 4 หลายเดือนก่อน +1

      True

    • @godbhaigod
      @godbhaigod 2 หลายเดือนก่อน +3

      Relax 840 comment ho gaye

  • @anujpoudel
    @anujpoudel 10 หลายเดือนก่อน +33

    58:15
    when you did 'my_car.model = "City" ' in line 41 in that instance new property/attribute 'model' was created so now there are two attributes one '__model' and another 'model' for object 'my_car'. This happens because we can create new property for any object on the go and is not necessary to be in the class.

    • @soumalyadas1123
      @soumalyadas1123 7 หลายเดือนก่อน +1

      fine observation.

    • @harshmeetsinghsaluja9773
      @harshmeetsinghsaluja9773 6 หลายเดือนก่อน +1

      exactly dude....i was confused for 2 hrs and when i figured it out, i saw ur comment ;-;

    • @DesaiGauravS-
      @DesaiGauravS- 4 หลายเดือนก่อน

      thank y

    • @Airman.programer
      @Airman.programer 4 หลายเดือนก่อน

      class Car:
      def __init__(self, brand, model):
      self.brand = brand
      self.__model = model

      @property
      def model(self):
      return self.__model

      mycar = Car("tata", "safari")
      print(mycar.model)
      # mycar.model = "city" #this line will give error
      is this correct code ? ?

  • @devottamvaishnav65
    @devottamvaishnav65 9 หลายเดือนก่อน +7

    OOPs was so confusing for me earlier! Finally undestoood classes in python so easily, now i finally get what that self, and constructor and how to use them. Thank you so much sir!

  • @poojaheera5980
    @poojaheera5980 3 หลายเดือนก่อน +5

    Practice time
    05:01 Basic class and objects
    17:38 Class Method and Self
    21:46 Inheritence
    28:47 Encapsulation
    37:31 Polymorphism
    41:17 Class Variables
    47:03 Static Method
    54:36 Property Decorators
    1:01:20 Class Inheritence and instance Function
    1:03:24 Multiple inheritence

  • @hetashrikansariwala9527
    @hetashrikansariwala9527 10 หลายเดือนก่อน +9

    I am trying to learn oops in python since many days but unable because of you now I am confident in oops. Thank you sir

  • @Thecircuit001
    @Thecircuit001 10 หลายเดือนก่อน +25

    I don’t know why this man is sharing this type of content free in youtube…. 😊…. Sooo much love…. So much valuable information ❤

    • @sidhantarya2483
      @sidhantarya2483 10 หลายเดือนก่อน +5

      Bharat is already famous for rishi-muni gurus and hitesh sir wants best software engineers will also be from India in the whole world.

    • @basavarajchougala3384
      @basavarajchougala3384 19 วันที่ผ่านมา

      @@sidhantarya2483
      Ultimate Answer. 🙏..

  • @Debraj-HTC
    @Debraj-HTC 10 หลายเดือนก่อน +13

    Finally undestoood classes in python so easily, now i finally get what that self, and constructor and how to use them, earlier it was so confusing. Thank you!

  • @ashishkrpandey91
    @ashishkrpandey91 5 หลายเดือนก่อน +10

    52:25 jab staticmethod use kar k method bnaye the to obj se acess ho jatata sir
    Ex-
    print(my_car.general_description())
    print(Car.general_description())
    output :-
    Cars are means of transport
    Cars are means of transport

    • @Shukla-ji_knp
      @Shukla-ji_knp หลายเดือนก่อน

      Correct Bro...
      @staticmethod means it does not require an instance of the class to be called
      if we need to hide then we do print(Car.__general_info())

  • @anonyone8834
    @anonyone8834 10 หลายเดือนก่อน +10

    Pass is special keyword used as a placeholder for a code. In python when we make a class and we want to specify the use case later we just use pass to avoid error and code still being empty

  • @ankitpartap185
    @ankitpartap185 5 หลายเดือนก่อน +3

    Amazing video on Python OOPs. Etna toh college may nai krvaya jitna apnay ek vidoe may krva diya sir!!!! 😄

  • @danielhaidari1638
    @danielhaidari1638 10 หลายเดือนก่อน +5

    been following your videos since 2018 and LCO courses since I was in high school now in my second year uni in Aus. appreciate your work

  • @pranjul4018
    @pranjul4018 4 หลายเดือนก่อน +3

    if someone ask me how to learn python, this is one of the best playlist ever (especially this video on OOPs). Itna accha video OOPs jaise concept pe koi kaise bna sakta hai 🤷‍♂👌

  • @pawantripathi4332
    @pawantripathi4332 8 วันที่ผ่านมา

    Setter ka kaam hai private data ko safely change karna. Direct access nahi hota, aur setter methods ke through hi changes kiye jaate hain.
    36:32

  • @manasanmol6604
    @manasanmol6604 7 หลายเดือนก่อน +3

    Finally found such a detailed playlist, was looking back to remember the definitions when I stumbled over this

  • @mrayyan8813
    @mrayyan8813 4 หลายเดือนก่อน

    learning Python Day 12 - present sir
    00:03 Object Oriented Programming is like making Gujiya
    01:58 Understanding object-oriented programming through generalized forms and classes.
    05:45 Follow naming conventions and indentation in Python classes.
    07:41 Understanding object creation and attributes in Python
    11:41 Understanding object-oriented programming in Python.
    13:36 Understanding the usage of variables and parameters inside a class in Python
    17:44 Method to display full name of car brand and model
    19:49 Object-oriented programming concepts in Python
    24:06 Creating object and setting up wireless connection
    25:55 Using inheritance and 'super' keyword to access parent class methods and attributes in Python
    29:34 Encapsulation is about controlling access to class attributes
    31:32 Creating methods for accessing and setting attributes in Python
    35:31 Encapsulation and its importance
    37:36 Polymorphism allows different behaviors for objects of the same class.
    41:16 Class variables keep track of shared data, like counting instances.
    43:32 Object creation and access in OOP Python
    47:44 Static method in Java is a method belonging to the class, not owned by an instance.
    49:52 Linking and Wiring in Object Oriented Programming
    53:32 Decorators in Python allow you to modify functions.
    55:19 Understanding data encapsulation and access control in object-oriented programming
    58:51 Understanding the usage of decorators in Python
    1:00:42 Understanding property decorators in Python.
    1:04:49 Inheritance in electric car programming
    1:06:54 Python supports classes, inheritance, and methods

  • @ashurathi9286
    @ashurathi9286 4 หลายเดือนก่อน +4

    dialogue yaad agya😂"Maamla aagya h class ka aur tum maat khaa gye ho class se kuki ham h unchi class ke aur tum ho nichi class ke"

  • @sky.digitalmedia2732
    @sky.digitalmedia2732 8 หลายเดือนก่อน +2

    Sir, you teach in such a way which make any complex topic very easy
    💯💯💯💯

  • @proPakistani54
    @proPakistani54 10 หลายเดือนก่อน +3

    Krdya ❤❤❤

  • @utkarshsingh1128
    @utkarshsingh1128 6 หลายเดือนก่อน

    28:37 / 1:08:28 Encapsulation __brand ->private (only class members can use not outsider object) {hence data is encapsulated }
    36:45 / 1:08:28 Class Variable

  • @pranaypaul6361
    @pranaypaul6361 10 หลายเดือนก่อน +8

    In Python, static methods are indeed meant to be accessed by the class itself rather than by instances of the class. However, there is a subtle difference in how static methods are defined and accessed in Python compared to other programming languages like Java or C++.
    In Python, static methods are declared using the `@staticmethod` decorator, which specifies that the method should be treated as a static method. However, static methods in Python are not truly bound to the class itself. Instead, they are bound to the class's namespace, which is the same namespace that contains the class's other attributes and methods.
    This means that while static methods can be accessed using the class name, they can also be accessed using an instance of the class, as shown in the example you provided. When you call a static method using an instance of the class, the instance itself is not used in any way. The method is simply called using the class's namespace.
    This behavior is different from static methods in other programming languages, where static methods are truly bound to the class and cannot be accessed using an instance of the class. In Python, the ability to access static methods using both the class name and an instance of the class provides greater flexibility and allows for more concise code in certain situations.
    It's important to note that while static methods can be accessed using both the class name and an instance of the class, they should generally be accessed using the class name for consistency and clarity.
    class MyClass:
    @staticmethod
    def my_static_method():
    print("Hello from static method!")
    # Calling using the class name
    MyClass.my_static_method() # Output: Hello from static method!
    # Calling using an object
    obj = MyClass()
    obj.my_static_method() # Output: Hello from static method!

    • @priyeshsingh7586
      @priyeshsingh7586 9 หลายเดือนก่อน +1

      Just thinking what will be a production scenario where static method can be used by both Class and instance of the class as described above.

    • @M_Abdul1ah
      @M_Abdul1ah 6 หลายเดือนก่อน

      Scrolling through the comments to find someone discussing this… and here you are, brother.♥️

  • @poojaheera5980
    @poojaheera5980 4 หลายเดือนก่อน +1

    Isse acha content nai dekha mane related to learning python. Best playlist 😍

  • @AmanTiwari-ww7td
    @AmanTiwari-ww7td 10 หลายเดือนก่อน +3

    Excited for the django series sir

    • @onlypreparation5692
      @onlypreparation5692 10 หลายเดือนก่อน +1

      Yes

    • @zalaam_0
      @zalaam_0 10 หลายเดือนก่อน +2

      There is not a single latest course on whole youtube so big yes

    • @onlypreparation5692
      @onlypreparation5692 10 หลายเดือนก่อน

      @@zalaam_0 if also have , we would like to learn from hitesh sirji , because when we learn from sir , Just another level❤️❤️❤️

  • @Shukla-ji_knp
    @Shukla-ji_knp หลายเดือนก่อน

    I never drop any comments but Really Sir 40 min in your video so far and I'm loving it... You are a GREAT TEACHER :)

  • @emtu686
    @emtu686 2 หลายเดือนก่อน +1

    I watched more than five courses, but I didn't understand. At last, I found this video and understood it Consept. Thank you so match ❤😊😊

  • @prashantswaroop4801
    @prashantswaroop4801 5 หลายเดือนก่อน +1

    Awesomely done. Hands the best teacher I have ever seen. cleared all the basics practically you are truly a gem sir for the Indian coding community. Thanks

  • @soumyaranjanghadei6137
    @soumyaranjanghadei6137 5 หลายเดือนก่อน +1

    Finally undestoood classes in python so easily, now i finally get what that self, and constructor and how to use them, earlier it was so confusing. Thank you!

  • @Nisha-nb6rv
    @Nisha-nb6rv 2 หลายเดือนก่อน

    I can't express how well this is explained-it's clear and straightforward!

  • @Vishal_0841
    @Vishal_0841 10 หลายเดือนก่อน +2

    Guru ji imandari se ab question solve kar raha hu mza aa raha hai ❤

  • @islamiclife518
    @islamiclife518 หลายเดือนก่อน

    At 58:25, when we write my_car.name = "city", it actually creates a new attribute name in the my_car instance. This happens because self.name doesn’t already exist as a public attribute in the class.
    In this case, we made name private by using self.__name, so my_car.name doesn’t overwrite self.__name. Instead, it creates a separate name attribute in my_car.
    To modify the private __name attribute, we can access it using my_car._My_car__name.
    Now, name and __name are separate attributes.

  • @Waleedkkhan594
    @Waleedkkhan594 9 หลายเดือนก่อน

    This single video is more valuable then some TH-camr's entire channels. Incredible work sir. I learnt so many things. Oops inheritance, polymorphism, constructor, decorator thank you so much sir

  • @mubeenashraf8676
    @mubeenashraf8676 8 หลายเดือนก่อน +2

    The pass statement is used as a placeholder for future code. When the pass statement is executed, nothing happens, but you avoid getting an error when empty code is not allowed. Empty code is not allowed in loops, function definitions, class definitions, or in if statements.

  • @affreenmjha4113
    @affreenmjha4113 2 หลายเดือนก่อน

    Chai with Python while learning to make gujia objects = awesome learning ! Thank you for explaining so well ...

  • @Sampath1731
    @Sampath1731 หลายเดือนก่อน +1

    sir you are studied very nice, fantastic .
    Thank You!
    For studied object oriented programming

  • @farooqaziz3738
    @farooqaziz3738 5 หลายเดือนก่อน

    Sir mai python oops ki wajah se interview crack nhi saka
    Lekin aapke video dekhne ke baad mujhe oops ke all concept clear ho Gaye
    Thanks for sharing this useful knowledge

  • @vardanshprasad5801
    @vardanshprasad5801 10 หลายเดือนก่อน +1

    Sir apka English Bahut accha hai free codecamp pe dekha hai

  • @Haha1234-z7f
    @Haha1234-z7f 5 หลายเดือนก่อน +1

    When you are removing the self from general description at 50 min that time you by mistake your removed self of fuel type in ElectricCar class not major issue just giving a good feedback. Love you sir you are great !!!

  • @adityaiyer9285
    @adityaiyer9285 2 หลายเดือนก่อน

    Thank you for teaching such a complex concept in very simple and easy terms. With this video i have gained confidence in Python objects and inheritance. Thankyou

  • @SobanToor
    @SobanToor 5 หลายเดือนก่อน

    One of the best videos on Object-Oriented Programming in python I have ever witnessed.

  • @ahmedraza5114
    @ahmedraza5114 หลายเดือนก่อน

    Grear Sir, I have studied about OOP and thought had very strong grip on its concept, but every time when I listen to Hitesh Sir It takes me to next step.

  • @gamerk88
    @gamerk88 6 หลายเดือนก่อน

    I was stucked in OOp s in python for a day and then I find this vid and understand everything.Highly recommended for understanding oops in python.

  • @Nooresagheer
    @Nooresagheer 4 หลายเดือนก่อน

    ❤❤❤❤❤❤علم دینے کا بہت شکریا😊

  • @muhammadhilal5807
    @muhammadhilal5807 9 หลายเดือนก่อน

    i thought that this would be that boring video by learning the OOP with fancy names, but loved it how you explain it by just solving problems and learning along with it.

  • @krishnapalsingh2777
    @krishnapalsingh2777 10 หลายเดือนก่อน

    Super 🧑‍🔧 "Thoda difficult lg rha hai" 2,3 bar dekhne pr samjh a jaiga😊

  • @adnanrasheed4366
    @adnanrasheed4366 หลายเดือนก่อน

    You explained OOP in such an easy and phenomenal way! Thank you for making complex concepts so understandable. Love from Pakistan! 😍

  • @mdnozibuddowla4085
    @mdnozibuddowla4085 5 หลายเดือนก่อน

    agar mein is video full dekhne ki baad oop sikh jate hein to meri jitni bhi gmail account hein o sab se aap ki account ko subscribes karenge. because I am learning coding from 2016 se. abhi bhi oop mein bohot sari problems ate rehte hein. video dekhna start kari rahi hu.hope for the best

  • @shreyasjoshi3742
    @shreyasjoshi3742 4 หลายเดือนก่อน

    My friend recommended me about this channel, and I love the way of teaching.

  • @karannegi-y4m
    @karannegi-y4m 3 หลายเดือนก่อน +1

    i noticed a good point in static method that we can execute static function using object but we have to remove " self " as a parameter from static function that means we are not sending a reference of our object ( self contains reference of object ) that we are accessing the static by class only

  • @spm_01
    @spm_01 7 หลายเดือนก่อน

    very nice video with full of learning I am in 4th year now I learnt how to play with oops with python - thank you so much sir :)))

  • @abhaymalvi5458
    @abhaymalvi5458 9 หลายเดือนก่อน +1

    Best OOPs video on TH-cam!! 🔥

  • @shiblieahmed4284
    @shiblieahmed4284 หลายเดือนก่อน

    Content Quality is superb ❤️ from Dhaka,Bangladesh.

  • @Chitranshu0
    @Chitranshu0 6 หลายเดือนก่อน

    Sir, your approach to coding is as simple and refreshing as making a cup of tea. Just like brewing the perfect chai, you blend simplicity with richness, making the learning process both delightful and flavorful. Keep serving those amazing tutorials, they're a treat to our minds!

  • @Hamza_010
    @Hamza_010 27 วันที่ผ่านมา

    Kitna asan hoti zindagi agar programming or real life problems ko itna bara karna ki jaga koi itna simple samjana wala hota😂

  • @priyankagehlot9945
    @priyankagehlot9945 4 หลายเดือนก่อน +2

    1:08:13
    ek channel aaya h "chai aur code" ☕❤, jo dil se pdhate h aur dil se smjate h❤❤❤❤❤❤❤❤

  • @manavbhatt3169
    @manavbhatt3169 6 หลายเดือนก่อน

    I have completed the full video at once i loved the way hitesh sir teach , he teached all the concepts so smoothly and in very easy way , Big Thanks for this series sir 🙏✨️

  • @krishnamania1
    @krishnamania1 10 หลายเดือนก่อน +1

    Thank you sir , this is the first time I completely understand OOPS

  • @akashkr8541
    @akashkr8541 8 หลายเดือนก่อน

    oop se jaldi main bachpan me cycle sikh lia tha. now i am here. thanks for this video. i am going to watch it fully.

  • @Csengineer-377
    @Csengineer-377 3 หลายเดือนก่อน

    4 months but still no 800 comments He is god level teacher .. help his channel grow
    4 months but still no 800 comments He is god level teacher .. help his channel grow

  • @Jatin_Jaunwal
    @Jatin_Jaunwal 5 หลายเดือนก่อน

    One of the best videos on Python lecture and easily explains the difficult topics Thank you so much, sir 😇

  • @VishalMudgal-it9qy
    @VishalMudgal-it9qy 8 หลายเดือนก่อน

    mast samjhate ho sir , Ek baar m samjh aa ja rha h 😁😁

  • @xander-sum
    @xander-sum 4 หลายเดือนก่อน

    OOPs - Finally got some valuable knowledge.
    🙏Thank you for clear explanation

  • @AlokCodes1
    @AlokCodes1 6 หลายเดือนก่อน +2

    sir, there is a conceptual mistake at 51:47 . You said that the objects can not access static methods, but static method works on classed as well as instances of that class . Investigation study karke pata kiya :)
    thanks for these lectures (i find this playlist as the fastest way to learn and gain confidence in python)
    For the viewers: The difference between a normal method and static method is that inside a static method, you can't use any of the properties or method associated with the class. All the implementation has to be done using the parameters of that static method. BTW there is also a classmethod decorator, explore it also

    • @shrehanarya-iw6vx
      @shrehanarya-iw6vx 6 หลายเดือนก่อน

      thank you so much bhaiya mujhe lag raha tha ki mere code me error h :)

  • @TLP2007
    @TLP2007 4 หลายเดือนก่อน

    This is a good channel in the youtube i have ever seen😁😁😁😁😁😁😁

  • @MusawarMehdi
    @MusawarMehdi 5 หลายเดือนก่อน +1

    Complete oop concept thanks sir ♥️♥️

  • @VasantaChaw
    @VasantaChaw 23 วันที่ผ่านมา

    very helpfull videeo for beginner and support fron nepal,kathmandu

  • @subhabratamukherjee7448
    @subhabratamukherjee7448 หลายเดือนก่อน

    The way you described is too good.. thank you

  • @Solutionswithnayan
    @Solutionswithnayan 12 วันที่ผ่านมา

    Great knowledge rich content must recommend to people studying ml/ai very good isr aap padhaiye ham aapke saath hai

  • @letstry2854
    @letstry2854 10 หลายเดือนก่อน +1

    Great content wth clear explanation sir jee😍😍

  • @dysproghoul
    @dysproghoul 6 หลายเดือนก่อน

    this is was perfect rather than those basic generic oops videos
    this covered most of the things

  • @rawalbalouch5286
    @rawalbalouch5286 4 หลายเดือนก่อน

    I really like the way you delivered thanks many thanks from PAK

  • @onlylakshyaff5296
    @onlylakshyaff5296 หลายเดือนก่อน +1

    Sir jab bhi aap chai or code ek sath bolte ho mujhe chai or Sutta dhyan aa jata hai 😂Channel ka name Chai or Code ki jagah
    Chai or Sutta rakhdo
    ❤❤❤Aap bht ache se samjhate ho sir.
    #ChaiOrCode ☕🧑‍💻
    #ChaiOrsutta ☕🚬

  • @lakshyaaggarwal1608
    @lakshyaaggarwal1608 6 หลายเดือนก่อน

    Sir You have made things so easy and made me learn to write project code with industry standard while being in college, I have also seen your backend playlist and it has helped me a lot thx a lot

  • @more_us24
    @more_us24 9 หลายเดือนก่อน

    HEY RAM Bhgwan... What An Explanation!!!👏 Maza hi aa gaya lecture ka 😂❤️

  • @siddhant2943
    @siddhant2943 5 หลายเดือนก่อน

    I already knew objected oriented programming concepts in C++ and Java, it is amazing to see how different languages always come with something new to offer, this pointer in C++, super() method in java, @property decorator in python.

  • @TechTutorialswithPiyush
    @TechTutorialswithPiyush 8 หลายเดือนก่อน

    Shuruwat majburi me kari thi Python, ab maja aara hain ❤

  • @subhasreekar1297
    @subhasreekar1297 7 หลายเดือนก่อน

    You have explained all the concepts very easily ... Good for the beginners like me😊

  • @oyeeetaha7890
    @oyeeetaha7890 หลายเดือนก่อน

    deserves more recognition very good explanation

  • @ayushtripathiindia
    @ayushtripathiindia 3 หลายเดือนก่อน

    Well thought Sir I understood each and every part of the tutorial, Thanks for such kind of tutorials...

  • @faisaliqbal-h2k
    @faisaliqbal-h2k 4 หลายเดือนก่อน

    Nice way of teaching , and very interesting really I enjoy a lot. Thanks This was my first lecture, impressive

  • @Ady-tf1jm
    @Ady-tf1jm 6 หลายเดือนก่อน

    Thankyou Sir. Apne bhot easy way mai samja diya.

  • @rayyanzaidi3323
    @rayyanzaidi3323 2 หลายเดือนก่อน

    one of the great teacher available on TH-cam.

  • @sufiyanpatel6241
    @sufiyanpatel6241 5 หลายเดือนก่อน

    Perfect Teaching... Clear OOPs concept in python....

  • @RohitVarfa
    @RohitVarfa 10 หลายเดือนก่อน +1

    Thank you so much sir for oops concept explanation in a very easy manner 🙏

  • @MCoder-x
    @MCoder-x 7 หลายเดือนก่อน

    I think this was the best explanation to OOP. Thank you sir🙌🏻

  • @shahbajalam2076
    @shahbajalam2076 7 หลายเดือนก่อน +1

    Whoever is watching this video, just remember, the static method part is wrong. The class instance can 100% access the static method. Both class and instance can access the static methods. Static method means it does not get created for each instance, rather it gets created for only once.

  • @Abhay_Pandey_1
    @Abhay_Pandey_1 10 หลายเดือนก่อน

    Best python series on yt in hindi.

  • @deshichhora0121
    @deshichhora0121 9 หลายเดือนก่อน

    sir , bahut hi easy way me samjha le gaye ho aap

  • @ravijangra3871
    @ravijangra3871 5 หลายเดือนก่อน

    question no. 5 also makes us understand the concept of method overriding

  • @khawaja_here
    @khawaja_here 5 หลายเดือนก่อน

    First time am fully understand the concepts of OOP Thank you so much sir

  • @meenakshimeeen
    @meenakshimeeen 3 หลายเดือนก่อน

    Object Oriented Programming is no more scary now.... Thank you sir ❤

  • @vaishnavikulkarni663
    @vaishnavikulkarni663 6 หลายเดือนก่อน

    Thank you sir. You made this topic so much easier to learn

  • @Pardhu-g5g
    @Pardhu-g5g 20 วันที่ผ่านมา

    nice explanation osm ...Thank you very much bhai successfull completed

  • @suryaa_tycoons4455
    @suryaa_tycoons4455 4 หลายเดือนก่อน

    Hats off sir no one teaching like this

  • @Zeeshantariqpkn
    @Zeeshantariqpkn 7 หลายเดือนก่อน

    Method of teaching so perfect with real time examples, can in django series create a video on creating user wiith rights no one created on it yet.

  • @saunLogan
    @saunLogan 2 หลายเดือนก่อน

    And i see the comments to be at 857 now !! Awesome !! job and awesome teaching

  • @nikshadali50
    @nikshadali50 10 หลายเดือนก่อน

    Sir, you teach in such a way which make any complex topic very easy

  • @dinesh-hdnd
    @dinesh-hdnd 9 หลายเดือนก่อน

    maza or samajh dono aa gaya video dekh ke thanks sir...

  • @shaikusman536
    @shaikusman536 7 หลายเดือนก่อน

    Awsome content Hitesh sir ji...........Thanks a ton ...keep up the great work....Respect from Bangalore.

  • @karnrkyt
    @karnrkyt 6 หลายเดือนก่อน

    10 questions are the best way to teach and learn. maza aa rha hai ish series m😊 great content @hitesh sir

  • @naziabegumsiddique1504
    @naziabegumsiddique1504 4 หลายเดือนก่อน

    i started late but i want you to teach us more your channel make me belive that i also code if teacher is this level good.