python
python copied to clipboard
Exercism exercises in Python.
I just completed the Hangman exercise on the Python track. I see from #1690 that you had problems deciding what to do with this exercise. The problem is from a...
I just did the error-handling exercise, and had several issues: - It was unclear at first what to do with inputs. Looking at the tests, it seemed that trying to...
I tried out a couple of exercises on the Python track today, and noticed with the Raindrops exercise in particular that the tests were requiring me to implement the entire...
Good day. I first offer the obligatory "I'm not GitHub-savvy" apology. I _did_ look for an answer as prescribed [here](https://exercism.io/faqs), following steps in subheading **Opening an Issue**. But I have...
When running the test suites for a Python exercise in a local environment, Pytest generates a set of warnings because each of the tests is annotated (decorated) with `@pytest.mark.task`. Because...
After [PR #366](https://github.com/exercism/configlet/pull/366) in the Configlet repo is merged, we need to update the "Generating Practice Exercise Documents" section of our CONTRIBUTING file to reflect the new way to sync/generate...
Filing this as a tracking issue and invitation to a discussion on revisions to this exercise. The intent of `Clock` was to practice class customization and operator overloading via `dunder...
This issue describes how to implement the `rich-comparisons` concept exercise for the python track. ## Getting started **Please please please read the docs before starting.** Posting PRs without reading these...
This came up in discussing PR #2838, so opening an issue here for longer discussion/evaluation. We currently "hand validate" example python code used in `introduction.md`, `about.md`, and `instruction.md` and similar...
The bank account problem is meant to be "hard" with the difficulty coming from the need to lock the account during threading. I created a solution that passed all of...