Contact: aviboots(AT)netvision.net.il
39,880 questions
51,806 answers
573 users
import math def round_down_to_nearest_even_number(num): return math.floor(num / 2) * 2 print(round_down_to_nearest_even_number(9.99)) print(round_down_to_nearest_even_number(5.91)) ''' run: 8 4 '''