Skip to content
19 changes: 18 additions & 1 deletion app/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,35 @@
pi = 3.14
one_is_a_prime_number = False
name = "Richard"

my_favourite_films = [
"The Shawshank Redemption",
"The Lord of the Rings: The Return of the King",
"Pulp Fiction",
"The Good, the Bad and the Ugly",
"The Matrix",
]

profile_info = ("michel", "michel@gmail.com", "12345678")

marks = {
"John": 4,
"Sergio": 3,
}

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,
],
}
Loading