-
Notifications
You must be signed in to change notification settings - Fork 1k
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' #1109
base: master
Are you sure you want to change the base?
'Solution' #1109
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,9 @@ | ||
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) |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,30 @@ | ||
import init_django_orm # noqa: F401 | ||
|
||
from django.db.models import QuerySet | ||
from db.models import Genre, Actor | ||
|
||
|
||
def main() -> QuerySet: | ||
pass | ||
genres = ["Western", "Action", "Dramma"] | ||
for genre in genres: | ||
Genre.objects.create(name=genre) | ||
|
||
actors = ["George Klooney", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The name 'George Klooney' is misspelled. It should be 'George Clooney'. This is corrected later, but it would be more efficient to use the correct name initially. |
||
"Kianu Reaves", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The name 'Kianu Reaves' is misspelled. It should be 'Keanu Reeves'. This is corrected later, but it would be more efficient to use the correct name initially. |
||
"Scarlett Keegan", | ||
"Will Smith", | ||
"Jaden Smith", | ||
"Scarlett Johansson"] | ||
for actor in actors: | ||
first_name, last_name = actor.split() | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Ensure that all actor names in the list have exactly two parts (first and last name) to avoid errors when splitting the string. If any name has more than two parts, this line will raise a ValueError. |
||
Actor.objects.create(first_name=first_name, last_name=last_name) | ||
|
||
Genre.objects.filter(name="Dramma").update(name="Drama") | ||
Actor.objects.filter(last_name="Klooney").update(last_name="Clooney") | ||
Actor.objects.filter(first_name="Kianu", last_name="Reaves").update(first_name="Keanu", last_name="Reeves") | ||
|
||
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") | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
|
||
import os | ||
|
||
# Build paths inside the project like this: os.path.join(BASE_DIR, ...) | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The genre 'Dramma' seems to be a typo. It is later updated to 'Drama', but it would be better to correct it initially to avoid unnecessary updates.