Here is my code
import random class Player_Character: def __init__(self, hp, maxhp, ac, THAC0): self.hp = int(hp) self.maxhp = int(maxhp)