Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Sun Angle by Oleksii-Levenets
def sun_angle(time):
#replace this for solution
from datetime import datetime
sun_rise = datetime.strptime("06:00", "%H:%M")
time_of_the_day = datetime.strptime(time, "%H:%M")
delta = (time_of_the_day - sun_rise)
d = delta.seconds
if d >= 0 and d <= 43200: # 43'200seconds = 60sec * 60min * 12h
rez = d * 0.00416667 # 0.00416667 = 180 degrees / 43'200 sec
return round(rez, 2)
else:
return "I don't see the sun!"
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!")
Oct. 18, 2020