Python
class Jeffery:
def __init__(self, bitches, iq):
self.bitches = bitches
self.iq = iq
jeffery = Jeffery(0, 0)
print(f"Jeffery's IQ: {jeffery.iq}")
print(f"Jeffery's bitches: {jeffery.bitches}")
Python
class Jeffery:
def __init__(self, bitches, iq):
self.bitches = bitches
self.iq = iq
jeffery = Jeffery(0, 0)
print(f"Jeffery's IQ: {jeffery.iq}")
print(f"Jeffery's bitches: {jeffery.bitches}")
Python
class Tommy:
def __init__(self, bitches, iq):
self.bitches = bitches
self.iq = iq
tommy = Tommy(0, 0)
print(f"Tommy's IQ: {tommy.iq}")
print(f"Tommy's bitches: {tommy.bitches}")
// Method 1 of creating an object | |
const myObj1 = { | |
firstName: "John", | |
lastName: "Doe", | |
age: 26 | |
}; | |
// Method 2 of creating an object | |
const myObj2 = new Object({ | |
employed: true, |
Python
class Trxppy:
def __init__(self, bitches, iq):
self.bitches = bitches
self.iq = iq
trxppy = Trxppy(0, 0)
print(f"Trxppy's IQ: {trxppy.iq}")
print(f"Trxppy's bitches: {trxppy.bitches}")