Files
ffmpeg_collection/testing.py
2026-02-26 15:52:01 +01:00

11 lines
253 B
Python

class Doggo:
def __init__(totallyself, legs, coat):
totallyself.legs = legs
totallyself.coat = coat
def funcd(dog):
print("oh noes a doggo with " + dog.legs + "legs and with " + dog.coat + " fur")
woof = Doggo("4", "yellow")
woof.funcd()