79456548

Date: 2025-02-21 07:04:09
Score: 1.5
Natty:
Report link

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]
Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Ehsan Paknejad