Answers for "zip django template"

1

zip django template

mylist = zip(list1, list2)
context = {
            'mylist': mylist,
        }
return render(request, 'template.html', context)
Posted by: Guest on May-26-2020
0

zip django template

{% for item1, item2 in mylist %}
Posted by: Guest on May-26-2020

Python Answers by Framework

Browse Popular Code Answers by Language