我正在尝试(垂直)加入一些元组,最好说我将这些元组插入到数据框中。但到现在都做不到。问题出现了,因为我试图水平而不是垂直添加它们。
data_frame = pandas.DataFrame(columns=("A","B","C","D"))
str1 = "Doodles are the logo-incorporating works of art that Google regularly features on its homepage. They began in 1998 with a stick figure by Google co-founders Larry Page and Sergey Brin -- to indicate they were attending the Burning Man festival. Since then the doodles have become works of art -- some of them high-tech and complex -- created by a team of doodlers. Stay tuned here for more of this year's doodles"
aa = str1.split()
bb = zip(aa[0:4])
data_frame.append(bb,ignore_index=True,verify_integrity=False)
是否有可能或者我必须遍历元组中的每个单词才能使用插入