python class
class Person: def __init__(self, name, age): self.name = name self.age = age def myfunc(self): print("Hello my name is " + self.name +".") p1 = Person("Victor", 24) p1.myfunc()
python class
class Person: def __init__(self, name, age): self.name = name self.age = age def myfunc(self): print("Hello my name is " + self.name +".") p1 = Person("Victor", 24) p1.myfunc()
python class
class Dog(object): def __init__(self, name, age): self.name = name self.age = age def speak(self): print("Hi I'm ", self.name, 'and I am', self.age, 'Years Old') JUB0T = Dog('JUB0T', 55) Friend = Dog('Doge', 10) JUB0T.speak() Friend.speak()
Python Class Example
#Source: https://vegibit.com/python-class-examples/ 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()
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us