I'm trying to make an easy beggar my neighbour game using Python.
I've two lists named p1 and p2 which both have random elements like ['A', 'K', '9', '2']
etc...
I've also a dictionary named cards_values with keys and values like: {'A': 13, 'K': 12}
etc...
...and now I want to compare these two lists using a dictionary to check which player won the round
I'm not gonna paste the code 'cause I want a hint/advice, not the solution.