- 此问题在此处已有答案**:
Why can't I iterate twice over the same iterator? How can I "reset" the iterator or reuse the data?(5个答案)
1年前关闭.
import pandas as pd
sentences=['aaa','bbb','ccc']
labels = [1,2,3]
infos = zip(sentences , labels)
df_synthesize = pd.DataFrame(infos, columns = ['content','label'])
print(df_synthesize)
print(list(infos))
我使用infos
来初始化 Dataframe ,但是,在创建之后,信息变为空列表。
print(list(infos))
[]
很奇怪,为什么会这样?
Pandas版:1.1.5
1条答案
按热度按时间nfg76nw01#
试试这个。
1.1.5
产出