From a3e1801cc723ced580a085c2dc3e77be05cc63a7 Mon Sep 17 00:00:00 2001 From: unknown Date: Tue, 23 Jun 2026 21:21:03 -0300 Subject: [PATCH 1/2] Solution --- app/main.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/app/main.py b/app/main.py index f07695b9b..5718607bd 100644 --- a/app/main.py +++ b/app/main.py @@ -17,3 +17,7 @@ collection_of_coins = {1, 2, 25} # write your code here +sorted_variables = { + "mutable": [list, dict, set], + "immutable": [int, float, str, tuple, bool] +} From daa61731d9718e352dbd36a27034cd7c2d00ec4a Mon Sep 17 00:00:00 2001 From: unknown Date: Tue, 23 Jun 2026 21:32:58 -0300 Subject: [PATCH 2/2] Solution variable --- app/main.py | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/app/main.py b/app/main.py index 5718607bd..b01a09e72 100644 --- a/app/main.py +++ b/app/main.py @@ -18,6 +18,16 @@ # write your code here sorted_variables = { - "mutable": [list, dict, set], - "immutable": [int, float, str, tuple, bool] -} + "mutable": [ + my_favourite_films, + marks, + collection_of_coins + ], + "immutable": [ + lucky_number, + pi, + one_is_a_prime_number, + name, + profile_info + ] +} \ No newline at end of file