Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Second solution in Clear category for Sun Angle by Parzifal
def sun_angle(time):
T = time.split(':')
t = (int(T[0])-6 + int(T[1])/60)
return (t*15) if 0<=t<=12 else "I don't see the sun!"
Oct. 15, 2018