class Dartspiel:
    
    def __init__(self, p_startwert):
        self.pkt = int(p_startwert)
        self.wuerfe = 0
    
    def spiel_starten(self):
        


#Hauptprogramm
d = Dartspiel(101)
d.spiel_starten()