-
Notifications
You must be signed in to change notification settings - Fork 162
[Python] Improve Concept Exercise: lists #2880
Comments
Hello, if it is possible, I would like to work on this feature. |
I have a few questions for this issue.
Thanks in advance. |
Hi @serenalucca, Apologies - I didn't see your comments here, or I would have replied earlier. First, thank you so much for taking on this issue. We really appreciate it. ⭐ To answer your questions:
As I commented in your PR, this is a balance. On one hand, we want the hints to "unstick" the student. On the other, we don't want to give away exact answers. I am on the fence with the way your hints are written -- they're good, but some are pretty detailed. Part of me wants to remove direct code examples. I've pinged the other Python maintainers to get their feedback.
Copying in this case was totally fine. It gives us an opportunity to remove the pieces that aren't directly relevant to the exercise. Typically, the
You don't have to. Typically, I do include in the design doc the resources I worked from when I was writing/designing the concept exercise, in order to point future maintainers to what my data/starting point was. But for many of these, the starting point is the Python docs, so its not super-important. |
Thank you very much for your precise answer and for your kindness, I really appreciate it! I'm going to check the PR for the modifications. |
* [Python] Improve Concept Exercise: lists #2880 Hi! This is my very first contribution to an open-source project, I need feedback, especially for the hints file. Thanks in advance. * [Python] Improve Concept Exercise: lists #2880 applied prettier * Update languages/python/exercises/concept/elyses-enchantments/.docs/introduction.md Co-authored-by: BethanyG <BethanyG@users.noreply.github.com> * Update languages/python/exercises/concept/elyses-enchantments/.docs/introduction.md Co-authored-by: BethanyG <BethanyG@users.noreply.github.com> * Update languages/python/exercises/concept/elyses-enchantments/.docs/introduction.md Co-authored-by: BethanyG <BethanyG@users.noreply.github.com> * Update languages/python/exercises/concept/elyses-enchantments/.docs/introduction.md Co-authored-by: BethanyG <BethanyG@users.noreply.github.com> * Update languages/python/exercises/concept/elyses-enchantments/.docs/introduction.md Co-authored-by: BethanyG <BethanyG@users.noreply.github.com> * Update languages/python/exercises/concept/elyses-enchantments/.docs/introduction.md Co-authored-by: BethanyG <BethanyG@users.noreply.github.com> * Update languages/python/exercises/concept/elyses-enchantments/.docs/introduction.md Co-authored-by: BethanyG <BethanyG@users.noreply.github.com> * Update languages/python/exercises/concept/elyses-enchantments/.meta/design.md Co-authored-by: BethanyG <BethanyG@users.noreply.github.com> * Update languages/python/exercises/concept/elyses-enchantments/.docs/introduction.md Co-authored-by: BethanyG <BethanyG@users.noreply.github.com> * slice notation in introduction and about file * modification of hint and introduction file + format of comments * prettier format * Update hints.md * Update languages/python/concepts/lists/about.md Co-authored-by: BethanyG <BethanyG@users.noreply.github.com> * Update languages/python/concepts/lists/about.md Co-authored-by: BethanyG <BethanyG@users.noreply.github.com> * Update languages/python/concepts/lists/about.md Co-authored-by: BethanyG <BethanyG@users.noreply.github.com> * Update languages/python/concepts/lists/about.md Co-authored-by: BethanyG <BethanyG@users.noreply.github.com> * Update about.md * Update introduction.md * prettier Co-authored-by: BethanyG <BethanyG@users.noreply.github.com>
@valentin-p - Thoughts? Are we OK to close this? Ooops. Sorry. Didn't see the automation close it - but it is closed. Apologies for pinging you. |
This issue describes how to improve the
lists
concept exercise (elyses-enchantments
)for the Python track .Getting started
Please please please read the docs before starting. Posting PRs without reading these docs will be a lot more frustrating for you during the review cycle, and exhaust Exercism's maintainers' time. So, before diving into the implementation, please read up on the following documents:
Please also watch the following video:
Goal
The goal of this exercise is to teach the basics of the
List
(sequence type) data type in Python. The exercise will walk the student through how to create lists via various methods, iterate through lists via looping, and access items in various lists through indexing and forming/accessing list slices.A draft version of this exercise is already implemented (it was completed when the specifications of v3 were not final) and should be used as a starting point for the fully functional exercise.
Learning objectives
list
via constructor (list()
) & literal ([]
)+
in
and/ornot in
bracket notation
)[start:stop:step]
)for item in
lists
can store mixed/any data typeslists
are mutable. Assigning a new value to a list index will change the value at that index.Out of scope
copy()
,append()
,sort()
etc)len()
,max()
,min()
,count()
,sorted()
)lists
(i.e a list ofdicts
, alist
oflists
, alist
oftuples
)Concepts
lists
Prerequisites
basics
str
comparisons
conditionals
Resources to refer to
Hints
Hints should link/refer to one or more of the resources above or other equivalent resources as needed.
About Doc
The
about.md
file for this concept exercise can be found here. This doc can be used in whole or in part as theintroduction.md
for this concept exercise.Representer
No changes needed
Analyzer
No changes needed
Implementing/Improving
The current implementation of this exercise can be found here. Note that the following files are currently missing, and need to be created:
.docs/hints.md
.docs/introduction.md
.meta/design.md
concepts/lists/links.json
-- the links from Resources to refer to can be placed here, as well as any additional interesting or helpful links for the understanding or application of lists in Python.Additionally, the following existing files can be Improved and simplified:
.meta/example.py
lists_test.py
lists.py
These files need to be proofread for understanding, grammar, and spelling:
.docs/instructions.md
Help
If you have any questions while implementing the exercise, please post the questions as comments in this issue, or reach out on our Slack channel.
The text was updated successfully, but these errors were encountered: