Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
One rounding formula solution in Clear category for Sun Angle by frankiser
def sun_angle(time):
"""
to find the angle of the sun above the horizon knowing the time of the day
Input: The time of the day.
Output: The angle of the sun, rounded to 2 decimal places.
"""
hour = int(time[0:2])
minutes = int(time[3:5])
if hour < 6 or hour > 18 or (hour == 18 and minutes > 0):
angle = 'I don\'t see the sun!'
else:
angle: float = ((hour - 6) * 15) + (minutes * 0.25)
return angle
if __name__ == '__main__':
print("Example:")
print(sun_angle("07:00"))
#These "asserts" using only for self-checking and not necessary for auto-testing
assert sun_angle("07:00") == 15
assert sun_angle("01:23") == "I don't see the sun!"
print("Coding complete? Click 'Check' to earn cool rewards!")
April 21, 2020
Comments: