Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
以下のクエリで大文字の values_list を取得する方法はありますか?
dict(Territory.objects.values_list('name'.upper(),'code')) # in pseudocode
または、リスト内包表記を行う必要がありますか?
dict([(name.upper(), code.upper()) for name,code in Territory.objects.values_list('name','code')])