I have a dictionary like below:
my_dict = {'A' : [1, 2, 3, 4, 5], 'B' : [10, 1, 2, 5, 8], 'C': [6, 5, 3, 1]}
I want to remove values less than 3 from "A" and "C" while B remains the same, so the output looks like the below:
my_dict = {'A' : [ 3, 4, 5], 'B' : [10, 1, 2, 5, 8], 'C': [6, 5, 3]}
How to achieve this fast and easy?