From 514f4603446112500e92d5e812551a0a4f0a9fdd Mon Sep 17 00:00:00 2001 From: Oleh K Date: Mon, 15 Jun 2026 20:24:24 +0200 Subject: [PATCH] Solution --- app/main.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/app/main.py b/app/main.py index f07695b9b..f41ad1773 100644 --- a/app/main.py +++ b/app/main.py @@ -10,10 +10,14 @@ "The Matrix", ] profile_info = ("michel", "michel@gmail.com", "12345678") + marks = { "John": 4, "Sergio": 3, } 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, name, profile_info] +}