def xp_to_level(xp: float) -> float: level = xp ** (1/3) return round(level, 2) @fukurou
the living tribunal Moderator Staff member moderator Yesterday at 1:15 AM #1 Python: def xp_to_level(xp: float) -> float: level = xp ** (1/3) return round(level, 2) @fukurou