list of dataframe to dataframe
import pandas as pd
df = pd.concat(list_of_dataframes)
# easy way
list of dataframe to dataframe
import pandas as pd
df = pd.concat(list_of_dataframes)
# easy way
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
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us