[Answer]-How get value of a list by a tuple in Django

1👍

Iterating over a dictionary gives you its keys. To get its values, iterate over items_value.values(). Or, in a template, {% for value in items_value.values %}. Note that Python dictionaries are unordered, so there are no guarantees about what order you’ll get the values in.

0👍

You can loop over the values:

{% for value in items_value.values() %}

Leave a comment