Perintah Django untuk mengambil semua kolom tabel

table = Country.objects.values_list('name_of_the_country', 'country_code')
Dangerous Dove