Ok so essentially I extracted a large list of values from a database online using the bioservices package. What I want to do if turn this list of strings into a dataframe using pandas that I can then further format.
CodePudding user response:
This should work for you. Just replace my list with yours.
import pandas as pd
d = ['your', 'list']
df = pd.DataFrame(columns= ['col1'],
data=d)
print(df)