QueryDict.items()
Just like the standard dictionary items()
method, except this uses the same last-value logic as __getitem__()
. For example:
1 2 3 | >>> q = QueryDict( 'a=1&a=2&a=3' ) >>> q.items() [( 'a' , '3' )] |
QueryDict.items()
Just like the standard dictionary items()
method, except this uses the same last-value logic as __getitem__()
. For example:
1 2 3 | >>> q = QueryDict( 'a=1&a=2&a=3' ) >>> q.items() [( 'a' , '3' )] |
Designed by : w10schools
service@w10schools.com
Please login to continue.