语句提示存在语法错误: ```python print("Could not open %s" % doc, file=sys.err) ``` 目前修改为: ```python print("Could not open %s" % doc, sys.err) ``` 参考: https://github.com/ziyuanjun/PythonDataScience/blob/master/chapter2/u9_urlopen.py