This is my dictionary
x = {'balance': 19.1, 'advance': 0.4, 'withdrawal': 53.0, 'deposit': 24.7, 'transfer': 2.8000000000000003}
when i try to sort it by
sorted(x) = ['advance', 'balance', 'deposit', 'transfer', 'withdrawal']
it only gave me the keys, i also need the corresponding values with it