| 1 | 1 | class SpaceAge: |
| 2 | """A class to calculate age on different planets based on Earth seconds. |
| 3 | |
| 4 | This class takes an age in seconds and provides methods to calculate |
| 5 | how old someone would be on various planets in our solar system. |
| 6 | Each method returns the age in years on that specific planet, |
| 7 | rounded to two decimal places. |
| 8 | |
| 9 | Args: |
| 10 | seconds (int): Age in seconds |
| 11 | |
| 12 | Attributes: |
| 13 | seconds (int): The input age in seconds |
| 14 | EARTH_YEAR_IN_SECONDS (float): Constant representing seconds in an Earth year |
| 15 | |
| 16 | Example: |
| 17 | >>> age = SpaceAge(1000000000) |
| 18 | >>> age.on_earth() |
| 19 | 31.69 |
| 20 | """ |
| 21 | |
| 22 | # Constants for orbital periods in Earth years |
| 23 | ORBITAL_PERIODS = { |
| 24 | 'mercury': 0.2408467, |
| 25 | 'venus': 0.61519726, |
| 26 | 'earth': 1.0, |
| 27 | 'mars': 1.8808158, |
| 28 | 'jupiter': 11.862615, |
| 29 | 'saturn': 29.447498, |
| 30 | 'uranus': 84.016846, |
| 31 | 'neptune': 164.79132 |
| 32 | } |
| 33 | |
| 34 | # Earth year in seconds |
| 35 | EARTH_YEAR_IN_SECONDS = 31557600.0 |
| 36 | |
| 2 | 37 | def __init__(self, seconds: int) -> None: |
| 3 | | pass |
| 38 | """Initialize the SpaceAge object with seconds. |
| 39 | |
| 40 | Args: |
| 41 | seconds (int): Age in seconds |
| 42 | |
| 43 | # Edge Case: Negative seconds input |
| 44 | # Edge Case: Zero seconds input |
| 45 | """ |
| 46 | # Edge Case: Negative seconds input - treat as zero |
| 47 | if seconds < 0: |
| 48 | self.seconds = 0 |
| 49 | else: |
| 50 | self.seconds = seconds |
| 51 | |
| 52 | def _calculate_age_on_planet(self, planet: str) -> float: |
| 53 | """Helper method to calculate age on a specific planet. |
| 54 | |
| 55 | Args: |
| 56 | planet (str): Name of the planet |
| 57 | |
| 58 | Returns: |
| 59 | float: Age on the specified planet, rounded to 2 decimal places |
| 60 | """ |
| 61 | # Convert seconds to Earth years, then to planet years |
| 62 | earth_years = self.seconds / self.EARTH_YEAR_IN_SECONDS |
| 63 | planet_years = earth_years / self.ORBITAL_PERIODS[planet] |
| 64 | return round(planet_years, 2) |
| 65 | |
| 66 | def on_mercury(self) -> float: |
| 67 | """Calculate age on Mercury. |
| 68 | |
| 69 | Returns: |
| 70 | float: Age on Mercury in years, rounded to 2 decimal places |
| 71 | |
| 72 | # Handled Edge Cases: Negative seconds, Zero seconds |
| 73 | """ |
| 74 | return self._calculate_age_on_planet('mercury') |
| 75 | |
| 76 | def on_venus(self) -> float: |
| 77 | """Calculate age on Venus. |
| 78 | |
| 79 | Returns: |
| 80 | float: Age on Venus in years, rounded to 2 decimal places |
| 81 | |
| 82 | # Handled Edge Cases: Negative seconds, Zero seconds |
| 83 | """ |
| 84 | return self._calculate_age_on_planet('venus') |
| 85 | |
| 86 | def on_earth(self) -> float: |
| 87 | """Calculate age on Earth. |
| 88 | |
| 89 | Returns: |
| 90 | float: Age on Earth in years, rounded to 2 decimal places |
| 91 | |
| 92 | # Handled Edge Cases: Negative seconds, Zero seconds |
| 93 | """ |
| 94 | return self._calculate_age_on_planet('earth') |
| 95 | |
| 96 | def on_mars(self) -> float: |
| 97 | """Calculate age on Mars. |
| 98 | |
| 99 | Returns: |
| 100 | float: Age on Mars in years, rounded to 2 decimal places |
| 101 | |
| 102 | # Handled Edge Cases: Negative seconds, Zero seconds |
| 103 | """ |
| 104 | return self._calculate_age_on_planet('mars') |
| 105 | |
| 106 | def on_jupiter(self) -> float: |
| 107 | """Calculate age on Jupiter. |
| 108 | |
| 109 | Returns: |
| 110 | float: Age on Jupiter in years, rounded to 2 decimal places |
| 111 | |
| 112 | # Handled Edge Cases: Negative seconds, Zero seconds |
| 113 | """ |
| 114 | return self._calculate_age_on_planet('jupiter') |
| 115 | |
| 116 | def on_saturn(self) -> float: |
| 117 | """Calculate age on Saturn. |
| 118 | |
| 119 | Returns: |
| 120 | float: Age on Saturn in years, rounded to 2 decimal places |
| 121 | |
| 122 | # Handled Edge Cases: Negative seconds, Zero seconds |
| 123 | """ |
| 124 | return self._calculate_age_on_planet('saturn') |
| 125 | |
| 126 | def on_uranus(self) -> float: |
| 127 | """Calculate age on Uranus. |
| 128 | |
| 129 | Returns: |
| 130 | float: Age on Uranus in years, rounded to 2 decimal places |
| 131 | |
| 132 | # Handled Edge Cases: Negative seconds, Zero seconds |
| 133 | """ |
| 134 | return self._calculate_age_on_planet('uranus') |
| 135 | |
| 136 | def on_neptune(self) -> float: |
| 137 | """Calculate age on Neptune. |
| 138 | |
| 139 | Returns: |
| 140 | float: Age on Neptune in years, rounded to 2 decimal places |
| 141 | |
| 142 | # Handled Edge Cases: Negative seconds, Zero seconds |
| 143 | """ |
| 144 | return self._calculate_age_on_planet('neptune') |
| 145 | |
| 146 | # Handled Edge Cases: Negative seconds input, Zero seconds input |