Skip to content

Commit b1c2967

Browse files
committed
error-handling: add README
1 parent 04f385b commit b1c2967

1 file changed

Lines changed: 27 additions & 0 deletions

File tree

exercises/error-handling/README.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# Error Handling
2+
3+
Implement various kinds of error handling and resource management.
4+
5+
An important point of programming is how to handle errors and close
6+
resources even if errors occur.
7+
8+
This exercise requires you to handle various errors. Because error handling
9+
is rather programming language specific you'll have to refer to the tests
10+
for your track to see what's exactly required.
11+
12+
### Submitting Exercises
13+
14+
Note that, when trying to submit an exercise, make sure the solution is in the `exercism/python/<exerciseName>` directory.
15+
16+
For example, if you're submitting `bob.py` for the Bob exercise, the submit command would be something like `exercism submit <path_to_exercism_dir>/python/bob/bob.py`.
17+
18+
19+
For more detailed information about running tests, code style and linting,
20+
please see the [help page](http://exercism.io/languages/python).
21+
22+
## Source
23+
24+
Problem 6 at Project Euler [http://projecteuler.net/problem=6](http://projecteuler.net/problem=6)
25+
26+
## Submitting Incomplete Solutions
27+
It's possible to submit an incomplete solution so you can see how others have completed the exercise.

0 commit comments

Comments
 (0)