Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Sun Angle by coughin_coffin
def sun_angle(time):
a, b =time.split(":")
if int(a)<6 or int(a)>17 and int(b)!=0:
return "I don't see the sun!"
else:
return (int(a)-6)*15+(int(b)/4)
return time
Dec. 3, 2019