diff --git a/README.md b/README.md deleted file mode 100644 index 5e09de186..000000000 --- a/README.md +++ /dev/null @@ -1,23 +0,0 @@ -# Mutable and Immutable - -- Read [the guideline](https://github.com/mate-academy/py-task-guideline/blob/main/README.md) before start -- Implement the task: - -There are 8 variables of different data types in the main module. - -Your task is to create dictionary `sorted_variables` with two keys: -`"mutable"` and `"immutable"`. -Each value should be equal to a list that contains all variables of corresponding type. - -Example with other variables: -```python -a = 123 -b = [] -c = "Hi!" -d = [1, 2] - -sorted_variables = { - "mutable": [b, d], - "immutable": [a, c] -} -``` 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] +}