(1)运行后报错:“TypeError: cannot use a string pattern on a bytes-like” 原因:content用decode(‘utf-8’)进行解码,由bytes变成string.py3的urlopen返回的不是string是bytes. 解决方案:把’content’类型调整一下:content.decode(‘utf-8’) (2)运行后报错:“sqlite3.InterfaceError: Error binding parameter 1 -…