Thanks to Mark Dickinson. No need to math module:
list = ['3.14', '1.59', '2.65', '3.58'] floor_list = [int(float(i)//1) for i in list] # floor_list = [3, 1, 2, 3]