[Python] Putting the list together

Asked 2 years ago, Updated 2 years ago, 39 views

Hello, everyone I want to put the lists in one of the lists ([a], [b], [c], ... []) or [a,b,c,d,e,...]). What should I do?

Most of the time I looked it up, A = [a], B = [b] were made and put together like this, but my data has so many lists that I don't think this is possible.

list python

2022-09-20 21:45

1 Answers

import pandas as pd
data = pd.read_csv("......data_final.csv")
print(data['title'])

Do it like this.


2022-09-20 21:45

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.