Contact: aviboots(AT)netvision.net.il
39,884 questions
51,810 answers
573 users
def round_to_nearest_even_number(num): return round(num / 2) * 2 print(round_to_nearest_even_number(7.18)) print(round_to_nearest_even_number(6.91)) ''' run: 8 6 '''