Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
clear solution in Clear category for Sun Angle by flpo
def sun_angle(time):
h, m = map(int, time.split(':'))
t = ((h-6) * 60 + m) / 4
return t if 0 <= t <= 180 else "I don't see the sun!"
May 19, 2018
Comments: