|
|
|
|
|
by wodenokoto
654 days ago
|
|
I'm not quite sure how the fetchall() return type looks, but couldn't you just for name, age, title in cursor.fetchall():
print(name, age, title)
Ofcourse you have to come up with different variable names, but it still seems more elegant to just unpack. |
|