yarak ne demek?

Yarak, Türk argosunda kullanılan ve penisi ifade eden kaba bir sözcüktür. Genellikle küfür, hakaret veya aşağılama amacıyla kullanılır. Bu nedenle, kullanımı son dereceContext: I have a Player class with properties such as name, health, and level. I want to be able to easily save and load Player objects to and from a file. I'm looking for a convenient way to serialize and deserialize the Player object to a JSON string. I'm using Python and want to leverage the json library.

class Player:
    def __init__(self, name, health, level):
        self.name = name
        self.health = health
        self.level = level

    def __repr__(self):
        return f"Player(name='{self.name}', health={self.health}, level={self.level})"