I have a data in a column in a csv format and want to append it in series in python that it can be displayed like:
series=[12,13,12,22,34,21]
How can it be done? Should I do it via read_csv and then somehow transform it to series or it is a another way?
Thanks!