From a77ed1b7db83919eef932068d5b7c04eb8f75846 Mon Sep 17 00:00:00 2001 From: Artem Kolesnikov Date: Tue, 17 Mar 2026 14:18:30 +0100 Subject: [PATCH 1/4] Solution --- app/main.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/app/main.py b/app/main.py index f07695b9b..91708b3bc 100644 --- a/app/main.py +++ b/app/main.py @@ -17,3 +17,7 @@ collection_of_coins = {1, 2, 25} # write your code here +dict_ = { + "Mutable": [my_favourite_films, marks, collection_of_coins], + "Immutable": [lucky_number, pi, one_is_a_prime_number, profile_info], +} \ No newline at end of file From cc2e062729a49dc6592f95fb867ceb72d895f058 Mon Sep 17 00:00:00 2001 From: Artem Kolesnikov Date: Tue, 17 Mar 2026 14:23:00 +0100 Subject: [PATCH 2/4] fixed dictionary name and keys names --- app/main.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/main.py b/app/main.py index 91708b3bc..8778a954e 100644 --- a/app/main.py +++ b/app/main.py @@ -17,7 +17,7 @@ collection_of_coins = {1, 2, 25} # write your code here -dict_ = { - "Mutable": [my_favourite_films, marks, collection_of_coins], - "Immutable": [lucky_number, pi, one_is_a_prime_number, profile_info], +sorted_variables = { + "mutable": [my_favourite_films, marks, collection_of_coins], + "immutable": [lucky_number, pi, one_is_a_prime_number, profile_info], } \ No newline at end of file From f58af1b53cd3912f5ca9ad4a6db222293e79f514 Mon Sep 17 00:00:00 2001 From: Artem Kolesnikov Date: Tue, 17 Mar 2026 14:28:22 +0100 Subject: [PATCH 3/4] no newline at the end --- app/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/main.py b/app/main.py index 8778a954e..63f0924aa 100644 --- a/app/main.py +++ b/app/main.py @@ -20,4 +20,4 @@ sorted_variables = { "mutable": [my_favourite_films, marks, collection_of_coins], "immutable": [lucky_number, pi, one_is_a_prime_number, profile_info], -} \ No newline at end of file +} From b8a3e2a59dcf2acc16d3d83b50643e2b4872481d Mon Sep 17 00:00:00 2001 From: Artem Kolesnikov Date: Tue, 17 Mar 2026 14:39:46 +0100 Subject: [PATCH 4/4] added name variable in immutable key and removed comment --- app/main.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/app/main.py b/app/main.py index 63f0924aa..4d39e0963 100644 --- a/app/main.py +++ b/app/main.py @@ -16,8 +16,7 @@ } collection_of_coins = {1, 2, 25} -# write your code here sorted_variables = { "mutable": [my_favourite_films, marks, collection_of_coins], - "immutable": [lucky_number, pi, one_is_a_prime_number, profile_info], + "immutable": [lucky_number, pi, one_is_a_prime_number, name, profile_info], }