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