what is values_list in django orm

values_list in Django ORM retrieves a specific set of values from the database. It takes optional field names as arguments. The database query is executed and returns a ValuesListQuerySet. This ValuesListQuerySet contains tuples. Each tuple corresponds to the field values of the specified fields. Each tuple represents a single record in the database.