Single Inheritance in Python | Python Tutorial - Day #78

  Рет қаралды 77,355

CodeWithHarry

CodeWithHarry

Күн бұрын

Пікірлер: 150
@MuhammadIhsan-gu6ks
@MuhammadIhsan-gu6ks Жыл бұрын
The Exercise is : class animal: def __init__(self, name, color): self.name = name self.color = color def details(self): print(f"i have a {self.name} which is {self.color} in color") class cat(animal): def __init__(self, name, age): animal.__init__(self, name,color="gray") self.age = age def details(self): print( f"i have a {self.name} which is {self.color} in color whoes age is {self.age}" ) ani = animal('buffalow', 'black and white') ani.details() ani1 = cat('cat',3) ani1.details()
@ramkrshanpaswan1465
@ramkrshanpaswan1465 5 ай бұрын
class animal: def __init__(self,name,sound,color): self.name=name self.sound=sound self.color=color def music(self): print(f"the sound is {self.sound}") class cat(animal): def showdetails(self): print(f"the color of my {self.name} is {self.color}") def rang(self): print(f"the color of my {self.name} .his voice is {self.sound}") c=cat("cat","meow","white") c.showdetails() c.rang() a=animal("dog","bark","black") a.music()
@arohmanmaruf3284
@arohmanmaruf3284 2 ай бұрын
Output: i have a buffalow which is black and white i have a cat which is gray in color whoes age is 3
@HardLessonsOfLife
@HardLessonsOfLife Жыл бұрын
I have watched all of the first 77 lectures so far. And, I can tell you didn't waste my time in even one of them.
@dhairyamehta1706
@dhairyamehta1706 Жыл бұрын
Sir after 100 days of python please make a playlist on data analytics
@coder-programer4
@coder-programer4 Жыл бұрын
www.youtube.com/@praveenpatidar8312
@artistlado7105
@artistlado7105 Жыл бұрын
Yesss
@pradhyudh
@pradhyudh Жыл бұрын
Yes
@arnavanand2567
@arnavanand2567 Жыл бұрын
class Animal: def __init__(self, name, species): self.name = name self.species = species def make_sound(self): print("Sound made by the animal") class Cat(Animal): def __init__(self, name, catage, species): super().__init__(name, species) self.catage = catage def make_sound(self): print("meow") def hi(self): print("hi")
@nikhilkalloli6139
@nikhilkalloli6139 Жыл бұрын
Sir after 100 days of python.. Please make a playlist of DSA in C++🙏🙏🙏🙏
@arpankarmakar16
@arpankarmakar16 Жыл бұрын
Present sir on #Day78. Can't believe the amazing experience I had while learning python! Hats off!
@mariamhasan3733
@mariamhasan3733 Жыл бұрын
#Day78 done. Answer to the quick quiz: class Animal: def __init__(self, name, species): self.name = name self.species = species def make_sound(self): print("Sound made by the animal") class Dog(Animal): def __init__(self, name, breed): Animal.__init__(self, name, species="Dog") self.breed = breed def make_sound(self): print("Bark!") d = Dog("Dog", "Doggerman") d.make_sound() a = Animal("Dog", "Dog") a.make_sound() class Cat: def __init__(self, name, breed): Animal.__init__(self, name, species = "Robo Cat") self.breed = breed def make_sound(self): print("Meow Meow") def eat(self): print("Likes to eat Doracake") def m_sound(self): print("Doraemon talks like a human") c = Cat("Cat","Doraemon") c.make_sound() c.eat() c.m_sound()
@Sujal_don7
@Sujal_don7 Жыл бұрын
quick quiz: class Animal: def __init__(self,name,color): self.name=name self.color=color def __str__(self): return f"Name is {self.name} and color is {self.color}." class cat: def __init__(self,name,age): self.age=age Animal.__init__(self, name,color="Black and white") def __str__(self): return f"Name is {self.name}, color is {self.color}, and age is {self.age}." e1=Animal("Cow", "Ghost-white") print(e1) e2=cat("cat",9) print(e2)
@rutuldalsaniya6256
@rutuldalsaniya6256 Жыл бұрын
Harry bhai please Python with datascience and AI ka video banao
@jaideepawari7523
@jaideepawari7523 Жыл бұрын
Can't express my Thanks to you sir, You really changed my whole life, Thanks Harry Bhai!
@Iamaizadkhan
@Iamaizadkhan 2 ай бұрын
class Animal: def __init__(self, name, species): self.name = name self.species = species def make_sound(self): print("Sound made by the animal") class Cat(Animal): def __init__(self, name, species, fur_colour, eye_colour): self.name = name self.species = species self.fur_colour = fur_colour self.eye_colour = eye_colour def describe(self): print(f'{self.name} is from {self.species} species and have a {self.fur_colour} fur with {self.eye_colour} eyes.') def make_sound(self): print("Meowww!") def pet(self): print(f'{self.name} does not like petting... {self.name}: Hissssssss!!!') def fetch(self): print(f'{self.name} does not respond!') A = Cat('Bell', 'Sadak-Chhaap', 'Brown','Yellow' ) Cat.describe(A) Cat.make_sound(A) Cat.pet(A) Cat.fetch(A)
@khuzaimaamir8458
@khuzaimaamir8458 9 ай бұрын
I made a little bit of changes in the code to make it simpler: # Parent class class Animal: def __init__(self, name, species): self.name = name self.species = species def make_sound(self): print("Sound made by an animal") # Child class inheriting from Animal class Dog(Animal): def __init__(self, breed): super().__init__(name="Tom", species='Dog') # Call the parent class constructor self.breed = breed # ^ and ^ are Default values def wag_tail(self): print("Dog is wagging its tail") # Creating an instance of Dog d = Dog("Golden Retriever") print(d.name) # Accessing attribute from the parent class print(d.species) # Accessing attribute from the parent class print(d.breed) # Accessing attribute from the child class d.make_sound() # Calling method from the parent class d.wag_tail() # Calling method from the child class print(" ") #CAR SPECIFICATION class Car: def __init__(self,name,speed): self.name = name self.speed = speed def model(self): print("New Model 2024!") class Specs(Car): def __init__(self,engine,color): super().__init__(name="BMW", speed = "300 MPH") self.engine = engine self.color = color e = Specs("Turbo VTEC 90","Black") print(e.name) print(e.color) print(e.engine) print(e.speed)
@Keepitshort417
@Keepitshort417 Жыл бұрын
present sir from Pakistan tharparkar more love and courage of you agha barhoo sir ham ap ka sath ha
@Syed-j4h
@Syed-j4h Ай бұрын
class Animal: def __init__(self,name): self.name = name @property def features(self): print(f"{self.name} :- ") class Cat(Animal): def __init__(self,name): super().__init__(name) @property def sound(self): print("Sound : meow ") @property def family(self): print("Family : Tiger ") @property def type(self): print("Type : Domestic") a = Cat("cat") a.features a.sound a.family a.type
@bravcoder
@bravcoder 4 ай бұрын
# Quick Quiz: Implement a Cat class by using the Animal class. Add some methods specific to cats. class Animal: def __init__(self, name, species): self.name = name self.species = species def make_sound(self): print("Sound made by animal") class Cat(Animal): def __init__(self, name, breed="Cat"): Animal.__init__(self, name, species="Cat") self.breed = breed def meow(self) -> None: print("Meow") def wiggle_tail(self) -> None: print("*wiggles tail*") def angry(self) -> None: print("MEOWW!!!") def show_details(self) -> None: print(f"The species is {self.species} and the breed is {self.breed}. The name of the {self.species} is {self.name}.") def main() -> None: cat1 = Cat("Catto", "Persian") cat2 = Cat("Pikachu", "Siberian") cat1.meow() cat2.wiggle_tail() cat1.angry() cat2.angry() cat1.show_details() cat2.show_details() if ___name___ == '__main__': main()
@arpankarmakar16
@arpankarmakar16 Жыл бұрын
# Quick Quiz: class Animal: def __init__(self, name, species): self.name = name self.species = species def make_sound(self): print("Sound made by the animal") class Cat(Animal): def __init__(self, color, eye): self.color = color self.eye = eye super().__init__("Cat", "Felis catus") def make_sound(self): print("Meow meow!") def species_name(self): print(self.species) def skin_color(self): print(self.color) def eyes_color(self): print(self.eye) cat = Cat("Black", "Green") cat.make_sound() cat.species_name() cat.skin_color() cat.eyes_color()
@sanskarsingh2504
@sanskarsingh2504 Жыл бұрын
eske bad sir python related har ek topic like we scraping , bot making , pygame har , gui tkinter har ek pr aise hi series banaiye sir please
@pubpubji1121
@pubpubji1121 10 ай бұрын
#Quick Quiz: class animal: def __init__(self, name, species): self.name = name self.species = species def make_sound(self): print("sound made by animal") class cat(animal): def __init__(self, breed, colour, name): self.breed = breed self.colour = colour self.name=name def specification(self): print(f"{self.name} is a {self.colour} in colours. It is a {self.breed} cat.") a=animal("Tommy", "cat") a.make_sound() b=cat("persian"," blue","Tommy") b.specification()
@kalyankatkar9313
@kalyankatkar9313 Жыл бұрын
Which python course is best for beginners in your playlist ?
@Aryan-rr8gn
@Aryan-rr8gn Жыл бұрын
100dayscode is the best.
@divyanshisingh6468
@divyanshisingh6468 10 ай бұрын
class Animal: def __init__(self, name, species): self.name = name self.species = species def get_color(self): print("Color of animal is not known") class Cat(Animal): def __init__(self, name, color): Animal.__init__(self, name, species="cat") self.color = color def get_color(self): print("White") # Creating an instance of Cat d = Cat("cat", "White") d.get_color() # Creating an instance of Animal a = Animal("Dog", "Dog") a.get_color()
@kashinadoing
@kashinadoing Жыл бұрын
sir please make a video on more advance topics of js i have completed the old one but cant understant professional code cus it is advance so plzz and a video on short hand for python and javascript to plzzz srry for spam but i think these kind of things are important for industry use
@kashinadoing
@kashinadoing Жыл бұрын
sir please make a video on more advance topics of js i have completed the old one but cant understant professional code cus it is advance so plzz and a video on short hand for python and javascript to plzzz
@ramkrshanpaswan1465
@ramkrshanpaswan1465 5 ай бұрын
class animal: def __init__(self,name,sound,color): self.name=name self.sound=sound self.color=color def music(self): print(f"the sound is {self.sound}") class cat(animal): def showdetails(self): print(f"the color of my {self.name} is {self.color}") def rang(self): print(f"the color of my {self.name} .his voice is {self.sound}") c=cat("cat","meow","white") c.showdetails() c.rang() a=animal("dog","bark","black") a.music()
@deekshithaparasu
@deekshithaparasu Жыл бұрын
after a long time! #Day78 completed
@rajdeepsahu934
@rajdeepsahu934 10 ай бұрын
lass animal: def __init__(self,name,gender): self.name=name self.gender=gender class cat(animal): def __init__(self,name,gender,breed): animal.__init__(self,name,gender) self.breed=breed def show(self): print(f'{self.name} and {self.gender} and {self.breed}') a=cat('dog','male','fdfdf') a.show()
@fit-spirit1423
@fit-spirit1423 Жыл бұрын
wow sir , you are doing great you are man of your words.
@narendraparmar1631
@narendraparmar1631 10 ай бұрын
Thanks Harry for your efforts
@TasinIslam-mc2dk
@TasinIslam-mc2dk 9 күн бұрын
9.11.2024 day 78 is done. quick quiz answer: class Animal: def __init__(self, name, species): self.name = name self.species = species def make_sound(self): print("Sound made by the animal") class Cat(Animal): def __init__(self, name, breed): Animal.__init__(self, name, species="Cat") self.breed = breed def make_sound(self): print("Meow!") def purr(self): print("Purr...") # Creating instances and testing the methods c = Cat("Whiskers", "Siamese") c.make_sound() # Outputs: Meow! c.purr() # Outputs: Purr... a = Animal("Generic Animal", "Unknown") a.make_sound() # Outputs: Sound made by the animal
@adventuresofavalon2477
@adventuresofavalon2477 Жыл бұрын
Sir pls complete dsa playlist
@AshishBakoliya-k1g
@AshishBakoliya-k1g Ай бұрын
class Animal: def __init__(self, name, color): self.name = name self.color = color def make_sound(self): print(f" I have a {self.name} and color is {self.color}") class Cat(Animal): def __init__(self, name, color, breed): Animal.__init__(self, name, color = "White") self.breed = breed def make_sound(self): print(f" I have a {self.name} and color is {self.color} and breed is {self.breed}") a = Animal("Dog", "Black") a.make_sound() c = Cat("Cat", "Gray", "Persian") c.make_sound()
@indiannerd8309
@indiannerd8309 Жыл бұрын
Bhaiya please make video on HCl techbee program 🙏
@Baaghhh
@Baaghhh 2 ай бұрын
harry Pookie you deserve millions of views on your videos
@theroshantune
@theroshantune Жыл бұрын
day 78 done excited to see me after 21 days
@anupchaurasia368
@anupchaurasia368 Жыл бұрын
Harry bhai kya aap SAP ke upar tutorial leke aao please 🤗
@xrelax404
@xrelax404 Жыл бұрын
Harry Bhai Game Development ki video bhi dalo
@krrishbansal
@krrishbansal 5 ай бұрын
class Animal: class Animal: def __init__(self,name,species): self.name = name self.species = species def makeSound(self): print("Sound made by the Animal.") class Cat(Animal): def __init__(self,name,breed): super().__init__(name, species="Cat") self.breed = breed def makeSound(self): print("Meow!") a = Animal("Dog","Dalmatian") a.makeSound() c = Cat("Pussy","Cat") c.makeSound()
@Sharon46655
@Sharon46655 Жыл бұрын
Sir Kya app Certified Ethical hacking ke bare me batha saithe he
@Bhartigrover97
@Bhartigrover97 Жыл бұрын
Hi sir thank for your teachings. Is there anyway we can get to clear out doubts with you via any online class or program that we can join? #Harrybhai
@abhishekkrishna7203
@abhishekkrishna7203 Жыл бұрын
My channel name #krishnawebtech
@kalpesh_jagtap_2168
@kalpesh_jagtap_2168 4 ай бұрын
Thx harry sir hamko maja as Gaya 😊
@santoshvenkatesh1897
@santoshvenkatesh1897 Жыл бұрын
Harry Boss thank you for that You made coding is like a art and interesting Subject we love you Forever ❤️❤️❤️❤️❤️❤️
@muhammadanasimran5567
@muhammadanasimran5567 Жыл бұрын
enjoying this course
@historicmind8582
@historicmind8582 Жыл бұрын
harry bhai make a python project of chatbot using API with speak and listen function
@susmitamainde6644
@susmitamainde6644 3 ай бұрын
class Cat(Animal): def __init__(self, name, milk): Animal.__init__(self, name, spices="milk") self.bread = milk def make_sound(self): print(f"{self.name}: Meow! meowww!!")
@jawadahmed6034
@jawadahmed6034 Жыл бұрын
Brother please upload a "100 days Data science" course after this playlist ends
@pcuser6959
@pcuser6959 8 күн бұрын
class Animal : def __init__(self,name,species): self.name = name self.species = species def making_sound(self): print("Sound made by an Animal") class Cat(Animal): def __init__(self, name,breed,species ="Cat"): super().__init__(name,species) #both super() and Animal.works the same way # Animal.__init__(self,name,species) self.breed = breed self.species = species def making_sound(self): print("MEOW") def Eating(self): print (f"{self.name} is eating the food ") def Sleeping(self): print(f"{self.name} is sleeping zzzzzzzzz!") def Discription(self): print(f"{self.name} is Name of the cat, It is of {self.breed} bread, and belongs to a {self.species} family") cat = Cat("Kaalu", "Desi bella") cat.making_sound() cat.Eating() cat.Sleeping cat.Discription()
@MindFuel8877
@MindFuel8877 Жыл бұрын
रख हौसला वो मंजर भी आएगा प्यासे के पास चल कर समंदर भी आएगा
@Softwarexankit
@Softwarexankit Жыл бұрын
Nikal bot
@rachitgarg7773
@rachitgarg7773 Жыл бұрын
bhai laken ham samandar ka pe nahi sakta absos
@ruhbanabdullah7905
@ruhbanabdullah7905 Жыл бұрын
Bruhh yeh kya hai bhai....pehle white t-shirt then black hoodie ☺️😅 💞❤️❤️
@mtalhakhalid1679
@mtalhakhalid1679 9 ай бұрын
class Animal: def __init__(self) -> None: pass def sound(self): print("Sound made by animal.... ") class Pilla(Animal): def __init__(self) -> None: pass def sound(self): print("Bark") return super().sound() class cat(Animal): def __init__(self) -> None: pass def sound(self): print("Meow") return super().sound() Pa=Pilla() Pa.sound() ca=cat() ca.sound()
@pankajsinghbisht76
@pankajsinghbisht76 Жыл бұрын
Namaste Sir Present #Day78
@Chetna04
@Chetna04 Жыл бұрын
class Animal: def __init__(self,name,species): self.name = name self.species = species def make_sound(self): print("sound made by animal") class cat(Animal): def __init_(self,name,sound,colour,eyecolour): self.sound = sound self.colour = colour self.eyecolour = eyecolour self.name = name def make_sound(self): print(f"{self.sound} is create by {self.name}, , {self.colour} is haire colour , she have a beautifull eye it colour is {self.eyecolour}") c = cat("name","species") c.name = "cat" c.sound = "miaao" c.colour = "white" c.eyecolour = "grey" c.make_sound()
@americaaccount8333
@americaaccount8333 Жыл бұрын
Sir SQL pe ek course banao na plzz
@Me_siyaaa
@Me_siyaaa Ай бұрын
Great
@manoor0858
@manoor0858 3 ай бұрын
class Animal: def __init__(self,animal,species): self.animal=animal self.species=species @staticmethod def sound(): print("Making sound") class Cat(Animal): def __init__(self,name,fur): self.name=name self.fur=fur super().__init__(animal="Cat",species="Lion") @staticmethod def sound1(): print("Meow") c=Cat("Kitty","Black") print(c.name,c.fur,c.animal,c.species) c.sound() c.sound1()
@vikashrohit1967
@vikashrohit1967 Жыл бұрын
Codeigniter ka v video banaiea
@AmitKumar-fc9tb
@AmitKumar-fc9tb Жыл бұрын
hello herry bhai 100 days ke baad DSA ka 100 days course kara do Python me hi python me dsa course nhi hai youtube par bhi
@proudtobeindian1894
@proudtobeindian1894 Жыл бұрын
#100daysofcode #day78 Progress looks great!.
@NidaFatimah
@NidaFatimah Жыл бұрын
harry bhai please make a new project, legit great ho aap
@shivamchaudhary8592
@shivamchaudhary8592 Жыл бұрын
#Day78 Present Sir
@snowstorm6297
@snowstorm6297 Жыл бұрын
Daily lecture hota hai?
@061rishipatel2
@061rishipatel2 Жыл бұрын
@@snowstorm6297 HA
@kiranmurennawar2530
@kiranmurennawar2530 Жыл бұрын
class Animal: def __init__(self, name, species): self.name = name self.species = species def info(self): print(f"The name of Animal is {self.name} and its species is {self.species}") def make_sound(self): print("the sound of the animal") class cat(Animal): def __init__(self, name, breed): Animal.__init__(self, name, species="Cat") self.breed = breed def make_sound(self): print("Meow Meow") a = Animal("fuzzy", "Bombay Cat") a.info() a.make_sound() c = cat("fuzzy", "Bombay Cat") c.make_sound()
@ferdousur
@ferdousur Жыл бұрын
I am start from day 1 today.
@gamex9553
@gamex9553 Жыл бұрын
Day 78 completed
@onlyTruth557
@onlyTruth557 Жыл бұрын
The answer is :- class Animal: def __init__(self,name,species): self.name = name self.species = species def make_sound(self): print(f'This sound was make by {self.name}') class Cat (Animal): def __init__(self,name,breed) : Animal.__init__(self,name,species = Cat) self.breed = breed def make_sound(self): print('meow....meow....meow....') def info_cat(self,color,age): self.color = color self.age = age def info(self): print(f"The color of this {self.name} is {self.color} and their age is {self.age}") cat = Cat('Piu','Dil') cat.make_sound() ani = Animal('Piu','Cat') ani.make_sound() cat.info_cat('Brown',5) cat.info()
@loveboard4806
@loveboard4806 Жыл бұрын
Harry vai chanel ki logo update kar do na year video quality bohot accha ho gaiye background itna mast ho geya ab bas ye update kar lo year majahi ajayega
@lakhyadeepsen
@lakhyadeepsen Жыл бұрын
Day 78 of 100 of python challenge completed. #100DaysofCode #100dayspythonchallenge
@rachitgarg7773
@rachitgarg7773 Жыл бұрын
bhai c language par bani too college a bande too definatly deka ga he deka ga
@rohitmaurya6897
@rohitmaurya6897 Жыл бұрын
Dhoom macha lo with python 😍😍
@parwatsingh677
@parwatsingh677 Жыл бұрын
Thank you for this course ☺️🙏👍
@kalpesh_jagtap_2168
@kalpesh_jagtap_2168 4 ай бұрын
3:49 3:49 3:49 3:49 3:49 3:49 3:49 3:49 3:49 3:49 3:49 3:49 3:49 3:49 3:49 3:49 3:49 3:49 3:49 3:49 3:49 3:49 3:49 3:49 3:49 3:49 3:49 3:49 3:49 3:49 3:49 3:49 3:49 3:49 3:49 3:49 3:49 3:49 3:49 3:49 3:49 3:49 3:49 3:49 3:49 3:49 3:49 3:49 3:49 3:49 3:49 3:49 3:49 3:49 3:49 3:49 3:49 3:49 3:49 3:49 3:49 3:49 3:49 3:49 3:49 main Pakistan se hu
@fabfacts5285
@fabfacts5285 Жыл бұрын
Sir main aapko roj comment kar rha hu please reply do mujhe yeh confusion hai ki Software engineering college se karu ya kisi classes se
@anuragraj4072
@anuragraj4072 Ай бұрын
tu room se krle
@anythingfromanywhere
@anythingfromanywhere Жыл бұрын
*THIS IS UNRELATED TO THE VIDEO.* Can someone please tell me why this program m = 3 n = 3 x = [] for i in range(m): row1 = [] for j in range(n): row1.append(0) T = x.append(row1) print (T) Is returning none? I want it to return a 3 x 3 null matrix #harrybhai
@anythingfromanywhere
@anythingfromanywhere Жыл бұрын
Thank you so much. It works just fine now! I understood the mistake but do you know why it returned none anyway?
@mdsohanurrahmanhridoy1343
@mdsohanurrahmanhridoy1343 Жыл бұрын
#Completed DAY#78/100 😍
@muhammadosama9444
@muhammadosama9444 Жыл бұрын
Sir please C# ka proper course upload krden
@rishavsingh1849
@rishavsingh1849 Жыл бұрын
C ka course hai with handwritten notes all the details of c is covered in that vedio
@rohitmaurya6897
@rohitmaurya6897 Жыл бұрын
harry bhaiya mja aa rha hai
@letscatchup5869
@letscatchup5869 6 ай бұрын
thank you
@meditationmusic6482
@meditationmusic6482 Жыл бұрын
Thanks sir.
@RohanDasRD
@RohanDasRD Жыл бұрын
Day 78 done
@HACKERCOMMUNITY1
@HACKERCOMMUNITY1 Жыл бұрын
Thankyouuuuuuuuuuuuu
@tutifruiti8211
@tutifruiti8211 5 ай бұрын
i appreciate your commitment but you just make it quick by copying paste the code which make tough for begginer like me to understand it who dosen't have any interaction with python.....
@okay9168
@okay9168 Жыл бұрын
Present harry bhai
@mepitome
@mepitome Жыл бұрын
👍👍👍👍
@Radhe_radhe2929
@Radhe_radhe2929 Жыл бұрын
Day 78🔥
@NEERAJ-dw9bt
@NEERAJ-dw9bt 7 ай бұрын
Present sir 🤚
@Manish-qt1bz
@Manish-qt1bz Жыл бұрын
Present Sir 🔥
@KlutchyRex
@KlutchyRex Жыл бұрын
can i just edit your dog code for the cat code
@CoderzGaming093
@CoderzGaming093 Жыл бұрын
#day78
@EduChucklee
@EduChucklee Жыл бұрын
Aaj T-shirt harry bhaiya 😁😁
@rachitgarg7773
@rachitgarg7773 Жыл бұрын
kya apko nahi lagta 100days of python ka bad c language 100 days of challange bhi ana chiya harry bhai apke kya raya ha
@volcano_ff
@volcano_ff 3 ай бұрын
Line 5 maine sahi code likha fhir v galt bataa raha hai
@ADVANCE-qm6od
@ADVANCE-qm6od Жыл бұрын
Big fan 🙂
@aaku2684
@aaku2684 4 ай бұрын
Harry bhai ki shirt 😂
@sajidimran414
@sajidimran414 Жыл бұрын
I am present sir
@swamirajpatil7
@swamirajpatil7 Жыл бұрын
present sir
@thegamingsurprises
@thegamingsurprises Жыл бұрын
day 78
@henilrupawala
@henilrupawala Жыл бұрын
Present ✋🏻Sir
@jp-yu5wz
@jp-yu5wz Жыл бұрын
I'm present 💝
@akshatsharma9803
@akshatsharma9803 Жыл бұрын
Hiiii
@Uploader12
@Uploader12 Жыл бұрын
84
@shibammondal3915
@shibammondal3915 Жыл бұрын
#Day_78
@pcuser6959
@pcuser6959 8 күн бұрын
python op
@vedantdubey4464
@vedantdubey4464 Жыл бұрын
Harry sir aap daily 1 minute late ho jate ho 😂😂
@shaon1412
@shaon1412 Жыл бұрын
Day #67 of asking to make a discord server Can't stop, won't stop Please support the campaign by liking this video...
Multiple Inheritance in Python | Python Tutorial - Day #79
6:11
CodeWithHarry
Рет қаралды 74 М.
How I Would Learn Python FAST in 2024 (if I could start over)
12:19
Thu Vu data analytics
Рет қаралды 536 М.
Noodles Eating Challenge, So Magical! So Much Fun#Funnyfamily #Partygames #Funny
00:33
БУ, ИСПУГАЛСЯ?? #shorts
00:22
Паша Осадчий
Рет қаралды 2,7 МЛН
бабл ти гель для душа // Eva mash
01:00
EVA mash
Рет қаралды 9 МЛН
Introduction to OOPs in Python | Python Tutorial - Day #56
15:54
CodeWithHarry
Рет қаралды 339 М.
BlueSky for Beginners
10:58
Machine Pun Kelly
Рет қаралды 15 М.
Inheritance in Python | Python Tutorials for Beginners #lec89
27:20
Jenny's Lectures CS IT
Рет қаралды 88 М.
Inheritance in Python | Python Tutorial - Day #61
7:34
CodeWithHarry
Рет қаралды 182 М.
Multilevel Inheritance in Python | Python Tutorials for Beginners #lec91
21:11
Jenny's Lectures CS IT
Рет қаралды 32 М.
Python Tutorial: Working with JSON Data using the json Module
20:34
Corey Schafer
Рет қаралды 1,1 МЛН
Noodles Eating Challenge, So Magical! So Much Fun#Funnyfamily #Partygames #Funny
00:33