#MyPageWhereIDoSomethingWrong = 1 #my_new_variable = 2 #player.payoff = 0 class Person: nation = 'Russia' name = 'Philip' height = 179 weight = 78 def get_bmi(self): return (self.height / 100) / self.weight**2 ph = Person print(ph.nation) ph.get_bmi() print(ph.get_bmi())