diff --git a/app/__pycache__/main.cpython-314.pyc b/app/__pycache__/main.cpython-314.pyc new file mode 100644 index 000000000..e2f319a0e Binary files /dev/null and b/app/__pycache__/main.cpython-314.pyc differ diff --git a/app/main.py b/app/main.py index f07695b9b..e2a2bdb5c 100644 --- a/app/main.py +++ b/app/main.py @@ -7,8 +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 = { "John": 4, @@ -16,4 +15,16 @@ } collection_of_coins = {1, 2, 25} -# write your code here +sorted_variables = {"mutable": [], "immutable": []} + +sorted_variables["immutable"].append(lucky_number) +sorted_variables["immutable"].append(pi) +sorted_variables["immutable"].append(one_is_a_prime_number) +sorted_variables["immutable"].append(name) +sorted_variables["immutable"].append(profile_info) + +sorted_variables["mutable"].append(marks) +sorted_variables["mutable"].append(collection_of_coins) +sorted_variables["mutable"].append(my_favourite_films) + +print(sorted_variables) diff --git a/tests/__pycache__/__init__.cpython-314.pyc b/tests/__pycache__/__init__.cpython-314.pyc new file mode 100644 index 000000000..c4ccd660c Binary files /dev/null and b/tests/__pycache__/__init__.cpython-314.pyc differ diff --git a/tests/__pycache__/test_main.cpython-314-pytest-9.1.0.pyc b/tests/__pycache__/test_main.cpython-314-pytest-9.1.0.pyc new file mode 100644 index 000000000..76755fa10 Binary files /dev/null and b/tests/__pycache__/test_main.cpython-314-pytest-9.1.0.pyc differ