I have a list in Python
a = [100.50, 121.50, 130.50, 140.50, 150.50, 160.50, 170.50, 180.50, 190.50, 200.50]
I want to round first three values
[100.00, 100.00, 100.00, 140.50, 150.50, 160.50, 170.50, 180.50, 190.50, 200.50]
How can I do it? I need them to to round down to 100.0 if they are < 130.0 And not by index cause I want same with 200.0 till 230.0, 300.0 till 330.0 etc