In the documentation to sqlalchemy the selection example is this:
https://docs.sqlalchemy.org/en/latest/core/tutorial.html#selecting
>>> for row in result:
... print(row)
(1, u'jack', u'Jack Jones')
(2, u'wendy', u'Wendy Williams')
What does the character 'u' indicate here? Also, curiously, my friend gets the 'u' character, but I do not, reading from the local copies of the same sqllite db.
Thanks!