If you please can help me, I would appreciate it
I'm doing a query of sqlite3 and I want to show the result on a QListWidget
for row in c.execute("SELECT * FROM typem WHERE Type LIKE ?",('%'+'b'+'%',)):
test = ''
test += str(row[1])
print test
self.listWidget.addItems(test)
On the "print teste" is showing this
And on the "addItems" saves like this
Can you please help me? Thanks


self.listWidget.addItems(test)toself.listWidget.addItem(test)