Super Function in Python | Object Oriented Programming in Python

preview_player
Показать описание
Super Function in Python | Object Oriented Programming in Python
This video is part of advanced python tutorial in hindi.In this video,i have explained about Super Function in Python.
1) Object Oriented Programming Python
2) Python Tutorial in Hindi
3) Inheritance in Python

source code :-

About Python Tutorial:- python for beginners-Go from Zero to Hero in python.This tutorial includes python programming videos from basics to advanced

More tutorials:-

About codeyug :-
Codeyug provides tutorials for building your programming skills.Here,you will learn various programming languages,computer science,web development with free of cost.

SHARE | SUBSCRIBE | LIKE
-- - - - - - - - - - - - - - - - - -Thanks for watching this video - - - - - - - - - - - - - - - - - -- -
Our social links:-
creator:-
$ -shantanu kejkar -$

#python #python3 #programming #codeyug #tutorial #coding
Рекомендации по теме
Комментарии
Автор

you are super bhai bahoot achhe se aapne ne samjhya thanks bhia

anujshukla
Автор

Very nice explanation brother. Thank You

yogeshshrestha
Автор

class computer(object):
def __init__(self):
self.ram = '8gb'
self.storage = '512gb'
print("computer class constructor called")

class mobile(computer):
def __init_(self):
super(). __init__()
self.mobile = 'iphone x'
print("mobile class constructor called")

apple = mobile()
print (apple.__dict__)

Advance_games
Автор

sir using super function we can access child class properties through parent class object? replay sir ?

ENGINEERS_REMIX.
Автор

Print function m dict method q use kr rhe h

pavankushwaha