Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

convert list to dataframe

L = ['Thanks You', 'Its fine no problem', 'Are you sure']

#create new df 
df = pd.DataFrame({'col':L})
print (df)

                   col
0           Thanks You
1  Its fine no problem
2         Are you sure
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #convert #list #dataframe
ADD COMMENT
Topic
Name
3+6 =