python classes and objects properties code example
Example 1: class attributes in python
class MyClass:
class_attr = 0
def __init__(self, inst):
self.instance_attr = inst
obj = MyClass(1)
print(obj.class_attr)
print(obj.instance_attr)
print(MyClass.class_attr)
print(MyClass.instance_attr)
Example 2: class and object in python
class PartyAnimal:
def Party():
an=PartyAnimal()
an.Party()
Example 3: Python Class Example
class Vehicle:
def __init__(self, brand, model, type):
self.brand = brand
self.model = model
self.type = type
self.gas_tank_size = 14
self.fuel_level = 0
def fuel_up(self):
self.fuel_level = self.gas_tank_size
print('Gas tank is now full.')
def drive(self):
print(f'The {self.model} is now driving.')
obj = Vehicle("Toyota", "Carola", "Car")
obj.drive()
Example 4: how to use class's in python
class person:
name = "jake"
age = 13
x = vars(person)
print(x)