From 3e805eae526052a6a1f62a5c4e8b892e29c28de9 Mon Sep 17 00:00:00 2001 From: Vitalii Date: Tue, 31 Mar 2026 21:56:55 +0300 Subject: [PATCH] Solution --- app/main.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/app/main.py b/app/main.py index f07695b9b..52157f05f 100644 --- a/app/main.py +++ b/app/main.py @@ -7,7 +7,7 @@ "The Lord of the Rings: The Return of the King", "Pulp Fiction", "The Good, the Bad and the Ugly", - "The Matrix", + "The Matrix" ] profile_info = ("michel", "michel@gmail.com", "12345678") marks = { @@ -16,4 +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, name, one_is_a_prime_number, profile_info] +}