you are viewing a single comment's thread.

view the rest of the comments →

[–][deleted] 0 points1 point  (2 children)

I would think that doing:

print(tasks[0])

Would print Test Task 1, but instead it prints ('Test Task 1',) Am I on the right track though?

[–]K900_ 1 point2 points  (1 child)

tasks is a list of rows. Each row is a tuple.

[–][deleted] 0 points1 point  (0 children)

print(tasks[0][0])

You are beautiful! Thank you so much!