@mrmohsen
Trick🍻
To iterate over a dictionary while also accessing its keys and values:
python:
for key, value in my_dict.items():
# Do something with key and value
This trick simplifies iterating over dictionaries and provides direct access to both keys and values in a single loop.