list1 = { 'aa':4, 'ab':3, 'wr':7, 'de':6 }
I need output for this :
wr:7
de:6
aa:4
ab:3
If I need only 2 lines then how to do like - we:7 de:6
I don't want use to the import/collection function. I want to try by the for loop. if you any idea please suggest.