I want to merge two lists into list(tuple()) here's example
['robin', 'kate', 'shim', 'help'] # this was originally dictionary keys
with:
[100, 200, 300, 400, 500] # this was originally dictionary values
into:
[('robin', 100), ('kate', 200), ...]
I need some solutions please help me