Computer Science, asked by damanbajwa11, 6 months ago

Write a program in python to load Student table in a dataframe.

Answers

Answered by roshnanda20
1

Answer:

Pandas DataFrame columns are Pandas Series when you pull them out, which you can then call x. tolist() on to turn them into a Python list. Alternatively you cast it with list(x).

Similar questions