| 1 | 1 | class SpaceAge: |
| 2 | """ |
| 3 | A class to calculate the age of a person on different planets in our Solar System. |
| 4 | |
| 5 | The age is calculated based on the number of seconds provided, converting it to years |
| 6 | for each planet according to their orbital periods relative to Earth years. |
| 7 | |
| 8 | Attributes: |
| 9 | seconds (int): The age in seconds. |
| 10 | earth_year_in_seconds (float): The number of seconds in an Earth year (31,557,600). |
| 11 | """ |
| 12 | |
| 13 | # Earth year in seconds |
| 14 | EARTH_YEAR_IN_SECONDS = 31557600 |
| 15 | |
| 16 | # Orbital periods relative to Earth years |
| 17 | ORBITAL_PERIODS = { |
| 18 | 'mercury': 0.2408467, |
| 19 | 'venus': 0.61519726, |
| 20 | 'earth': 1.0, |
| 21 | 'mars': 1.8808158, |
| 22 | 'jupiter': 11.862615, |
| 23 | 'saturn': 29.447498, |
| 24 | 'uranus': 84.016846, |
| 25 | 'neptune': 164.79132 |
| 26 | } |
| 27 | |
| 2 | 28 | def __init__(self, seconds: int) -> None: |
| 3 | | pass |
| 29 | """ |
| 30 | Initialize the SpaceAge object with the given number of seconds. |
| 31 | |
| 32 | Args: |
| 33 | seconds (int): The age in seconds. |
| 34 | """ |
| 35 | # Edge Case: Handle negative seconds by taking absolute value |
| 36 | self.seconds = abs(seconds) |
| 37 | |
| 38 | def _calculate_age_on_planet(self, planet: str) -> float: |
| 39 | """ |
| 40 | Calculate the age on a specific planet. |
| 41 | |
| 42 | Args: |
| 43 | planet (str): The name of the planet (lowercase). |
| 44 | |
| 45 | Returns: |
| 46 | float: The age on the specified planet, rounded to 2 decimal places. |
| 47 | """ |
| 48 | # Edge Case: Handle division by zero if somehow EARTH_YEAR_IN_SECONDS was 0 |
| 49 | if self.EARTH_YEAR_IN_SECONDS == 0: |
| 50 | return 0.0 |
| 51 | |
| 52 | # Edge Case: Handle missing planet in ORBITAL_PERIODS |
| 53 | if planet not in self.ORBITAL_PERIODS: |
| 54 | raise ValueError(f"Planet '{planet}' is not supported.") |
| 55 | |
| 56 | earth_years = self.seconds / self.EARTH_YEAR_IN_SECONDS |
| 57 | planet_years = earth_years / self.ORBITAL_PERIODS[planet] |
| 58 | return round(planet_years, 2) |
| 59 | |
| 60 | def on_mercury(self) -> float: |
| 61 | """ |
| 62 | Calculate the age on Mercury. |
| 63 | |
| 64 | Returns: |
| 65 | float: The age on Mercury, rounded to 2 decimal places. |
| 66 | """ |
| 67 | return self._calculate_age_on_planet('mercury') |
| 68 | |
| 69 | def on_venus(self) -> float: |
| 70 | """ |
| 71 | Calculate the age on Venus. |
| 72 | |
| 73 | Returns: |
| 74 | float: The age on Venus, rounded to 2 decimal places. |
| 75 | """ |
| 76 | return self._calculate_age_on_planet('venus') |
| 77 | |
| 78 | def on_earth(self) -> float: |
| 79 | """ |
| 80 | Calculate the age on Earth. |
| 81 | |
| 82 | Returns: |
| 83 | float: The age on Earth, rounded to 2 decimal places. |
| 84 | """ |
| 85 | return self._calculate_age_on_planet('earth') |
| 86 | |
| 87 | def on_mars(self) -> float: |
| 88 | """ |
| 89 | Calculate the age on Mars. |
| 90 | |
| 91 | Returns: |
| 92 | float: The age on Mars, rounded to 2 decimal places. |
| 93 | """ |
| 94 | return self._calculate_age_on_planet('mars') |
| 95 | |
| 96 | def on_jupiter(self) -> float: |
| 97 | """ |
| 98 | Calculate the age on Jupiter. |
| 99 | |
| 100 | Returns: |
| 101 | float: The age on Jupiter, rounded to 2 decimal places. |
| 102 | """ |
| 103 | return self._calculate_age_on_planet('jupiter') |
| 104 | |
| 105 | def on_saturn(self) -> float: |
| 106 | """ |
| 107 | Calculate the age on Saturn. |
| 108 | |
| 109 | Returns: |
| 110 | float: The age on Saturn, rounded to 2 decimal places. |
| 111 | """ |
| 112 | return self._calculate_age_on_planet('saturn') |
| 113 | |
| 114 | def on_uranus(self) -> float: |
| 115 | """ |
| 116 | Calculate the age on Uranus. |
| 117 | |
| 118 | Returns: |
| 119 | float: The age on Uranus, rounded to 2 decimal places. |
| 120 | """ |
| 121 | return self._calculate_age_on_planet('uranus') |
| 122 | |
| 123 | def on_neptune(self) -> float: |
| 124 | """ |
| 125 | Calculate the age on Neptune. |
| 126 | |
| 127 | Returns: |
| 128 | float: The age on Neptune, rounded to 2 decimal places. |
| 129 | """ |
| 130 | return self._calculate_age_on_planet('neptune') |
| 131 | |
| 132 | # Handled Edge Cases: negative seconds, division by zero, missing planet in ORBITAL_PERIODS |
| 133 | # Handled Edge Cases: negative seconds |
| 134 | # Handled Edge Cases: division by zero, missing planet in ORBITAL_PERIODS |
| 135 | # Handled Edge Cases: division by zero, missing planet in ORBITAL_PERIODS |
| 136 | # Handled Edge Cases: division by zero, missing planet in ORBITAL_PERIODS |
| 137 | # Handled Edge Cases: division by zero, missing planet in ORBITAL_PERIODS |
| 138 | # Handled Edge Cases: division by zero, missing planet in ORBITAL_PERIODS |
| 139 | # Handled Edge Cases: division by zero, missing planet in ORBITAL_PERIODS |
| 140 | # Handled Edge Cases: division by zero, missing planet in ORBITAL_PERIODS |