5
I have a dictionary with the following format
dic={759147': 54, '186398060': 8, '199846203': 42, '191725321': 10, '158947719': 4}
would like to know if there is how to sort it by value and print on the screen. So that the output is.
'158947719': 4
'186398060': 8
'191725321': 10
'199846203': 42
'759147': 54