Page 1 of 1

The column subr_faved_by contains an array of values (names of redditors who added the subreddit to which the current po

Posted: Mon May 02, 2022 12:25 pm
by answerhappygod
The column subr_faved_by contains an array of values
(names of redditors who added the subreddit to which the current
post was submitted), but unfortunately they are in text format, and
you would not be able to process them properly without converting
them to a suitable python type. You must convert these string
values to Python lists, going from ’["user1", "user2" ... ]’
to ["user1", "user2" ... ].