File: class/Extras/Other/PriorClasses/nasa-ksc-aug15/excs2.py

.

    









with open('filename') as file:
    ...process file...
    
assert test, message

raise Exc

---

file = open('filename')
try:
    ...process file...
finally:
    file.close()

---

xxx()
yyy()

---

try:
    xxx()
except:
    pass
yyy()
...

----

def func(): ...

try:
    func()
except:
    ....



[Home page] Books Code Blog Python Author Train Find ©M.Lutz