Learn Python Object Oriented Programming! 🚗
Bro Code
@brocodezAbout
Coding bootcamps HATE HIM! 🗿
Latest Posts
Video Description
#python #pythonprogramming #pythontutorial 00:00:00 introduction 00:01:53 classes 00:02:19 constructors 00:04:13 instantiate objects 00:05:06 attribute access operator 00:06:09 multiple objects 00:07:19 modules 00:08:21 methods 00:11:52 conclusion # object = A "bundle" of related attributes (variables) and methods (functions) # Ex. phone, cup, book # You need a "class" to create many objects # class = (blueprint) used to design the structure and layout of an object # --------------- car.py --------------- class Car: def __init__(self, model, year, color, for_sale): self.model = model self.year = year self.color = color self.for_sale = for_sale def drive(self): # print("You drive the car") # print(f"You drive the {self.model}") print(f"You drive the {self.color} {self.model}") def stop(self): # print("You stop the car") # print(f"You stop the {self.model}") print(f"You stop the {self.color} {self.model}") def describe(self): print(f"{self.year} {self.color} {self.model}") # -------------------------------------- # --------------- main.py --------------- from car import Car car1 = Car("Mustang", 2024, "red", False) car2 = Car("Corvette", 2025, "blue", True) car3 = Car("Charger", 2026, "yellow", True) print(car1.model) print(car1.year) print(car1.color) print(car1.for_sale) car1.drive() car1.stop() car3.describe() # --------------------------------------
You May Also Like
Instant Home Upgrade Must-Haves
AI-recommended products based on this video

FAURAPMNG FAURAPMNG 5 Pcs Graduation Cap Photo Charm Graduate Memorial Tassel Picture Charms with Angel Wing Personalized Bouquet Tassel DIY Grad Photo Chain for Class of Grad Cap Gown Ceremony Caps Charm Decor

RoboSeal Rechargeable Mason Jar Vacuum Sealer for Mason Jars Wide and Regular, One Touch Vacuum Sealer for Jars, 10 Lids Included, Digital Battery Indicator, As Seen on TV

Environet Hydroponic Growing Kit, Self-Watering Mason Jar Herb Garden Starter Kit Indoor, Windowsill Herb Garden, Grow Your Own Herbs from Organic Seeds (Basil)

4-in-1 Wooden Activity Desk & Chair Set – Birch Plywood Table with Reversible Whiteboard & Chalkboard, 3 Storage Areas for Learning, Art, and Organization
![Command Medium Picture Hanging Strips [Removable]: 12 Pairs (White)](https://m.media-amazon.com/images/I/61IChX1hbML._AC_UL960_FMwebp_QL65_.jpg)
Command Medium Picture Hanging Strips [Removable]: 12 Pairs (White)

Teppdfann Gold Leaf Stud Earrings Medium Leaf Drop Dangle Earrings for Women Hypoallergenic Plant Earrings for Vacation Leaf Jewelry for Gift

Teppdfann Gold Long Leaf Stud Earrings Hypoallergenic Leaf Dangling Earrings for Women Plant Earrings for Gift

Teppdfann Teardrop Earrings for Women, 14K Gold Plated Leaf Earrings, Handmade Filigree Dangle Earrings for Women Trendy




















