You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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