(self)
| 34 | # Now use this in other methods. |
| 35 | |
| 36 | def get_number(self): |
| 37 | self.input_value = format(float(input("Enter a number: ")), ".1f") |
| 38 | self.num = round(self.convert_to_float(self.input_value), 1) |
| 39 | return self.num |
| 40 | # Do I want to return the self.num? |
| 41 | # I think I have to just store it as it is. |
| 42 | |
| 43 | def determine_sign(self): |
| 44 | if self.num > 0: |
no test coverage detected