From 7b24a39ffe69bad922d70d6f9ff06c03db2237d8 Mon Sep 17 00:00:00 2001 From: Vitalii Vodolazkyi Date: Wed, 11 Mar 2026 15:09:41 +0100 Subject: [PATCH] Implemented the task, created dictionary dictionary sorted_variables with two keys: "mutable" and "immutable", where each value equal to a list that contains all variables of corresponding type. --- app/main.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/app/main.py b/app/main.py index f07695b9b..5789d4378 100644 --- a/app/main.py +++ b/app/main.py @@ -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, one_is_a_prime_number, name, profile_info] +}