0
query = c.execute('SELECT * FROM Patients')
resultset = c.fetchall()
if not resultset:
print("Sorry, the last name you entered does not match any patients "
"in the hospital.") #if there are no results this is printed
else:
for result in resultset:
result = ' '.join(result)
print("\n\t", result)
私は、それを '、'に変更すると言った提案を見ましたが、試してみましたが動作しませんでした。私のクエリの結果を印刷するのに問題がある
私は全くタイプが見つかったときに、同じエラーが文字列型を探している、と言ってプロンプトが表示されました。 – TannerMcGee