SyntaxFix
Write A Post
Hire A Developer
Questions
It's because you have:
def readTTable(fname): try:
without a matching except block after the try: block. Every try must have at least one matching except.
except
try:
try
See the Errors and Exceptions section of the Python tutorial.