From c80535bce322b126f25438149b43b97ea842c2b9 Mon Sep 17 00:00:00 2001 From: Meph Date: Wed, 4 Mar 2026 10:13:55 -0300 Subject: [PATCH 1/4] solved tasks --- app/main.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/app/main.py b/app/main.py index f07695b9b..7f095714e 100644 --- a/app/main.py +++ b/app/main.py @@ -1,3 +1,5 @@ +from importlib import import_module + lucky_number = 777 pi = 3.14 one_is_a_prime_number = False @@ -16,4 +18,6 @@ } collection_of_coins = {1, 2, 25} -# write your code here +mutable = [my_favourite_films , profile_info , marks , collection_of_coins] +immutable = [lucky_number , pi , one_is_a_prime_number , name] +sorted_variables = {"mutable" : mutable , "immutable" : immutable} From 09469a8c4771d0ceb8ae65c0c945cc764bd549d5 Mon Sep 17 00:00:00 2001 From: Meph Date: Wed, 4 Mar 2026 10:18:34 -0300 Subject: [PATCH 2/4] corrected errors --- app/main.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/app/main.py b/app/main.py index 7f095714e..39eec55ed 100644 --- a/app/main.py +++ b/app/main.py @@ -1,5 +1,3 @@ -from importlib import import_module - lucky_number = 777 pi = 3.14 one_is_a_prime_number = False From f1fbcd10a536931784c72576575e624092a83973 Mon Sep 17 00:00:00 2001 From: Meph Date: Wed, 4 Mar 2026 10:19:58 -0300 Subject: [PATCH 3/4] another error corrected --- app/main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/main.py b/app/main.py index 39eec55ed..eef9db199 100644 --- a/app/main.py +++ b/app/main.py @@ -16,6 +16,6 @@ } collection_of_coins = {1, 2, 25} -mutable = [my_favourite_films , profile_info , marks , collection_of_coins] -immutable = [lucky_number , pi , one_is_a_prime_number , name] +mutable = [my_favourite_films , marks , collection_of_coins] +immutable = [lucky_number , pi , one_is_a_prime_number , profile_info , name] sorted_variables = {"mutable" : mutable , "immutable" : immutable} From e3a98430c2176b1fe4c0d3719931208841b4527d Mon Sep 17 00:00:00 2001 From: Meph Date: Wed, 4 Mar 2026 10:24:07 -0300 Subject: [PATCH 4/4] taked out the extra space --- app/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/main.py b/app/main.py index eef9db199..efa287d4c 100644 --- a/app/main.py +++ b/app/main.py @@ -16,6 +16,6 @@ } collection_of_coins = {1, 2, 25} -mutable = [my_favourite_films , marks , collection_of_coins] +mutable = [my_favourite_films , marks , collection_of_coins] immutable = [lucky_number , pi , one_is_a_prime_number , profile_info , name] sorted_variables = {"mutable" : mutable , "immutable" : immutable}