Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
好的,所以基本上我使用 bioservices 包从在线数据库中提取了大量值。如果使用 pandas 将这个字符串列表转换为数据框,然后我可以进一步格式化,我想要做什么。
这是我从在线数据库中提取的值列表,我想将其转换为 pandas 数据帧
这应该适合你。只需将我的列表替换为您的列表即可。
import pandas as pd d = ['your', 'list'] df = pd.DataFrame(columns= ['col1'], data=d) print(df)