I am trying to round a self.correct_answer = Smth. * Smth.
I tried round(self.correct_answer, 2)
and several different format(self.correct_answer, '.2f')
type things.
Is it because of the 'self.'?
self.correct_answer = self.numbers1[self.number1] / self.numbers2[self.number2]
format(self.correct_answer, '.2f')