Tagged Questions
1
vote
2answers
103 views
Python continue from the point where exception was thrown
Hi is there a way to continue from the point where exception was thrown?
eg I have the following psudo code
unique code 1
unique code 2
unique code 3
if I want to ignore the exceptions of any of ...
9
votes
3answers
10k views
Continue on Except of a Try block in Python
I'd expect this to be a duplicate, but I couldn't find it.
Here's Python code, expected outcome of which should be obvious:
x = {1: False, 2: True} # no 3
for v in [1,2,3]:
try:
print x[v]
...
1
vote
2answers
339 views
Python: Handle Missing Files from a Sequence
I have a program that's basically as follows:
for l in range(0,100):
file = open("C:/Twitter/json/user_" + str(l) + ".json", "r")
#do some stuff
file.close()
I am trying to figure out a way to ...
2
votes
8answers
4k views
is there a way to continue an exception in c#?
When an unexpected exception occurs in your program (in the debugger). Sometimes you just want to skip it since killing the program at that point is more harmful than continuing. Or you just want to ...