I've the following nested dictionary:
[[u'bob', u'fred'], [u'sanders', u'harris'], [u'bob@xyz.com', u'fredharris@abc.com'], ['user1 password', 'user2 password']]
Printing Key/Value I get:
1: bob
1: fred
2: sanders
2: harris
3: bob@xyz.com
3: fredharris@abc.com
4: user1 password
4: user2 password
I cannot find a way in Python 2.7 to get the following output:
bob[tab]sanders[tab]bob@xyz.com[tab]user1 password
fred[tab]harris[tab]fredharris@abc.com[tab]user2 password
Could you please assist me?