For a school assignment, I have to adapt a given code but keep the dictionary comprehension mechanism in Python. Given my code
dct = {k: v for k in ["HELLO", "SLEEPING"] for v in ["WORLD", "CITY"]}
print(dct["HELLO"])
the printout is "CITY". How do I have to adapt the code to get "WORLD" returned? Thank's a lot!