QueryDict.values()
Just like the standard dictionary values()
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.values() [ '3' ] |
QueryDict.values()
Just like the standard dictionary values()
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.values() [ '3' ] |
Designed by : w10schools
service@w10schools.com
Please login to continue.