I’m working on a Python script where I need to loop through a dictionary of user IDs and perform an API request for each. I’m new to Python and coming from Java, so I’m struggling a bit with how to properly iterate through a dictionary in Python. What’s the best way to go through each key-value pair and use the values (user IDs) one by one in a function like get_latest_data() without always getting just the first item?