i have a dictionary like :
dictt = {"2020-01-02": 34 , "2019-02-19": 43 , "2012-08-19": 52 , "2010-10-10": 10 }
I want to filter this dictionary based on key (date) and keeping only the date greater or equal "2012-01-01" , please help
Expected output :
dictt = {"2020-01-02": 34 , "2019-02-19": 43 , "2012-08-19": 52}