PythonPractice icon indicating copy to clipboard operation
PythonPractice copied to clipboard

Python practice works

Results 25 PythonPractice issues
Sort by recently updated
recently updated
newest added

Traceback (most recent call last): File "D:/workspace/Python/spiderWanghong/huajiao.py", line 137, in class BoseModel(Model): File "D:/workspace/Python/spiderWanghong/huajiao.py", line 138, in BoseModel conn = Mysql(host='127.0.0.1', unix_socket='/tmp/mysql.sock', user='root', passwd='123456', db='wanghong', charset='utf8') File "D:\workspace\Python\spiderWanghong\mysql.py", line 14,...

没看到你在mysql.py这个文件中定义self.tbl就直接在48行使用了。 另外,Model类中的select方法,没有必要对例如select_str = '123, abc' 中的逗号进行处理吧,可以直接用select 123, abc from tbl。为什么非要用select '123', 'abc' from tbl呢? 请大神指点一二,谢谢!