我有个问题。如果我用文字解释,我会搞砸的,所以这里是图片。
我的代码:
import csv
def mytest():
s1 = 'post'
s2 = 'a_num'
s3 = ['personA','GenderA','personB','GenderB','personC','GenderC','personD','GenderD','personE','GenderE',]
s4 = ['comment by F','comm_F_gender','comment','ano_num','comment by G','comm_G_gender','comment','ano_num','comment by H','comm_H_gender','comment','ano_num']
with open('mytestfb.csv', 'a') as csvfile:
spamwriter = csv.writer(csvfile, delimiter=',',
quotechar='|', quoting=csv.QUOTE_MINIMAL)
spamwriter.writerow([s1.encode('utf-8'),s2.encode('utf-8')])
x = 0
while(x < len(s3)):
spamwriter.writerow(['','',s3[x].encode('utf-8'),s3[x+1].encode('utf-8')])
x += 2
x = 0
while(x < len(s4)):
spamwriter.writerow(['','','','',s4[x].encode('utf-8'),s4[x+1].encode('utf-8'),s4[x+2].encode('utf-8'),s4[x+3].encode('utf-8')])
x += 4
这就是这段代码正在做的事情:
这就是我需要代码做的事情: