import contextlib
with contextlib.suppress(FileNotFoundError):
os.remove('somefile.tmp')
# This is equivalent to the following try/except clause:
try:
os.remove('somefile.tmp')
except FileNotFoundError:
pass
NEXT MEETUP ON JANUARY 14th
Carson Zhang - Wxpython, visualization stuff.
Open Spot.
Please Let me know if you're Interested.