At the moment I'm learning Python from Python Crash Course. I understand that for a for loop has a general format like so:
for [iterating variable] in [sequence]:
[do something]
But as I'm reading the textbook I see this new format in the front of the for loop and I was looking up solutions but I didn't know what this might be called.
for key, value in user_0.items():
I assumed the for loop is designating itself specifically to the dictionary key and that is why there was the word "key" in front of the for loop? Here's a screenshot for a frame of reference if needed.