Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Sun Angle by wbl4126
def sun_angle(time):
hh, mm = map(int, time.split(":"))
ang = (hh * 60 + mm - 360) * 0.25
return ang if 0 <= ang <= 180 else "I don't see the sun!"
March 6, 2020
Comments: