You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
408 B

class Personnage:
def __init__ (self):
self.nom = input("Votre nom ? ")
self.pv = 20
self.xp = 1
self.race = input("Êtes vous un : guerrier, magicien, voleur ou elfe ? ")
self.inv = []
def info(self):
print("vous vous appellez {} et vous êtes un {}".format(self.nom, self.race))
mon_personnage = Personnage()
mon_personnage.info()