Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Solution #1102

Open
wants to merge 7 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions db/models.py
Original file line number Diff line number Diff line change
@@ -1 +1,10 @@
from django.db import models


class Genre(models.Model):
name = models.CharField(max_length=255)


class Actor(models.Model):
first_name = models.CharField(max_length=255)
last_name = models.CharField(max_length=255)
29 changes: 28 additions & 1 deletion main.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,33 @@

from django.db.models import QuerySet

from db.models import Genre, Actor

def main() -> QuerySet:
pass

genres = ["Western", "Action", "Dramma"]

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There is a typo in the genre name 'Dramma'. It should be 'Drama'. This is corrected later in the code, but it's better to fix it at the source.


actors = [
("George Klooney", "Kianu Reaves", "Scarlett Keegan"),

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The actors' names are incorrectly grouped in tuples. Each actor should be represented as a separate tuple with first and last names, e.g., ('George', 'Klooney').

("Will Smith", "Jaden Smith", "Scarlett Johansson")
]

for genre in genres:
Genre.objects.create(name=genre)

for last_name, first_name in actors:

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The tuple unpacking in the loop is incorrect. The actors list should contain tuples of two elements (first name and last name), but currently, it contains tuples of three elements.

Actor.objects.create(first_name=first_name, last_name=last_name)

Genre.objects.filter(name="Dramma").update(name="Drama")
Actor.objects.filter(first_name="George", last_name="Klooney").update(
last_name="Clooney"
)
Actor.objects.filter(
first_name="Kianu", last_name="Reaves"
).update(
first_name="Keanu", last_name="Reevas")

Genre.objects.filter(name="Action").delete()
Actor.objects.filter(first_name="Scarlett").delete()

return Actor.objects.filter(last_name="Smith").all().order_by("first_name")
Loading