| 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 passed since birth, |
| 6 | and the orbital periods of the planets relative to Earth years. |
| 7 | |
| 8 | Attributes: |
| 9 | seconds (int): The age in seconds. |
| 10 | earth_years (float): The age converted to Earth years. |
| 11 | """ |
| 12 | |
| 13 | # Earth year in seconds |
| 14 | EARTH_YEAR_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 | # Handled Edge Cases: None for this method |
| 36 | """ |
| 37 | self.seconds = seconds |
| 38 | self.earth_years = seconds / self.EARTH_YEAR_SECONDS |
| 39 | |
| 40 | def on_mercury(self) -> float: |
| 41 | """ |
| 42 | Calculate the age on Mercury. |
| 43 | |
| 44 | Returns: |
| 45 | float: The age on Mercury, rounded to two decimal places. |
| 46 | |
| 47 | # Handled Edge Cases: None |
| 48 | """ |
| 49 | return round(self.earth_years / self.ORBITAL_PERIODS['mercury'], 2) |
| 50 | |
| 51 | def on_venus(self) -> float: |
| 52 | """ |
| 53 | Calculate the age on Venus. |
| 54 | |
| 55 | Returns: |
| 56 | float: The age on Venus, rounded to two decimal places. |
| 57 | |
| 58 | # Handled Edge Cases: None |
| 59 | """ |
| 60 | return round(self.earth_years / self.ORBITAL_PERIODS['venus'], 2) |
| 61 | |
| 62 | def on_earth(self) -> float: |
| 63 | """ |
| 64 | Calculate the age on Earth. |
| 65 | |
| 66 | Returns: |
| 67 | float: The age on Earth, rounded to two decimal places. |
| 68 | |
| 69 | # Handled Edge Cases: None |
| 70 | """ |
| 71 | return round(self.earth_years, 2) |
| 72 | |
| 73 | def on_mars(self) -> float: |
| 74 | """ |
| 75 | Calculate the age on Mars. |
| 76 | |
| 77 | Returns: |
| 78 | float: The age on Mars, rounded to two decimal places. |
| 79 | |
| 80 | # Handled Edge Cases: None |
| 81 | """ |
| 82 | return round(self.earth_years / self.ORBITAL_PERIODS['mars'], 2) |
| 83 | |
| 84 | def on_jupiter(self) -> float: |
| 85 | """ |
| 86 | Calculate the age on Jupiter. |
| 87 | |
| 88 | Returns: |
| 89 | float: The age on Jupiter, rounded to two decimal places. |
| 90 | |
| 91 | # Handled Edge Cases: None |
| 92 | """ |
| 93 | return round(self.earth_years / self.ORBITAL_PERIODS['jupiter'], 2) |
| 94 | |
| 95 | def on_saturn(self) -> float: |
| 96 | """ |
| 97 | Calculate the age on Saturn. |
| 98 | |
| 99 | Returns: |
| 100 | float: The age on Saturn, rounded to two decimal places. |
| 101 | |
| 102 | # Handled Edge Cases: None |
| 103 | """ |
| 104 | return round(self.earth_years / self.ORBITAL_PERIODS['saturn'], 2) |
| 105 | |
| 106 | def on_uranus(self) -> float: |
| 107 | """ |
| 108 | Calculate the age on Uranus. |
| 109 | |
| 110 | Returns: |
| 111 | float: The age on Uranus, rounded to two decimal places. |
| 112 | |
| 113 | # Handled Edge Cases: None |
| 114 | """ |
| 115 | return round(self.earth_years / self.ORBITAL_PERIODS['uranus'], 2) |
| 116 | |
| 117 | def on_neptune(self) -> float: |
| 118 | """ |
| 119 | Calculate the age on Neptune. |
| 120 | |
| 121 | Returns: |
| 122 | float: The age on Neptune, rounded to two decimal places. |
| 123 | |
| 124 | # Handled Edge Cases: None |
| 125 | """ |
| 126 | return round(self.earth_years / self.ORBITAL_PERIODS['neptune'], 2) |