I have created a dictionary and filled it with dictionaries by using two for-each
loops.
y = {'Name': {'User0': 'Alicia', 'User1': 'Lea', 'User2': 'Jan', 'User3': 'Kot', 'User4': 'Jarvis'},
'Password': {'User0': 'kokos', 'User1': 'blbec ', 'User2': 'morous', 'User3': 'mnaumnau', 'User4': 'Trav3_liK'}}
Each user has a name and a password. It would be much easier to set my data like this:
y = {UserX : ["Name", "Password"], ... }
Is there any way I can "unify" my previous code?