<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">keys = ["a", "b", "c"]
values = [1, 2, 3]
hash = {k: v for k, v in zip(keys, values)}
print(hash)
</pre></body></html>