[Mecha Munch Management]: Fix hint for task #5 (send_to_store) (#3686)

Co-authored-by: Dmitrii Cheremushkin <dmitrii.cheremushkin@toptal.com>
This commit is contained in:
Dmitry Cheremushkin
2024-04-24 20:22:04 +03:00
committed by GitHub
parent 1fd9f1ccd0
commit e6b9efe151

View File

@@ -38,7 +38,7 @@ The dictionary section of the [official tutorial][dicts-docs] and the mapping ty
- What method would you call to get an [iterable view of just the keys][keys] of the dictionary? - What method would you call to get an [iterable view of just the keys][keys] of the dictionary?
- Remember that you can get the `value` of a given key by using `<dict name>[<key_name>]` syntax. - Remember that you can get the `value` of a given key by using `<dict name>[<key_name>]` syntax.
- If you had a `list` or a `tuple`, what [`built-in`][builtins] function might you use to sort them? - If you had a `list` or a `tuple`, what [`built-in`][builtins] function might you use to sort them?
- Remember that the `built-in` function can take an optional `reversed=true` argument. - Remember that the `built-in` function can take an optional `reverse=True` argument.
## 6. Update the Store Inventory to Reflect what a User Has Ordered. ## 6. Update the Store Inventory to Reflect what a User Has Ordered.