皆様いつもお世話になっております。
動作環境は以下の通りです。
windows10
Python 3.7.5
sqlite3 3.30.1
Pyhon
1def update_chk(name, comment): 2 return db.c.execute('select count(comment) from twitter_users where comment = ? and name = ?', (comment, name))
という関数を作って
python
1if update_chk(twitter_comment, user_name) > 0:
if文で分岐させたいのですが、
TypeError: '>' not supported between instances of 'sqlite3.Cursor' and 'int'
が出てしまって、比較できません。int()などを試したのですが、'sqlite3.Cursor'は数値になってくれないようです。
どうしたら数値とsqlite3.Cursorを比較できるでしょうか。
アドバイスとご教授のほどよろしくお願いいたします。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2019/11/24 19:15
2019/11/24 19:24
2019/11/24 20:50
2019/11/24 20:55