Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion app/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,8 @@
}
collection_of_coins = {1, 2, 25}

# write your code here

sorted_variables = {
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Process suggestion: the task asks you to read the external guideline before starting. Consider adding a brief comment at the top of the file (for example, # Guideline reviewed) or a short commit message to indicate you reviewed it.

"immutable": [pi, one_is_a_prime_number, lucky_number, name, profile_info],
"mutable" : [my_favourite_films, marks, collection_of_coins],
}
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Style suggestion: flake8 reports an E127 over-indented continuation line around this dictionary. Reduce the indentation of the continued lines so they visually align under the opening brace/parenthesis (e.g., align keys/values under the first character after the '{'). This will resolve the E127 warning.

Loading