我有2列:
日期
用户
我试图将两列连接起来,最终只有一列,如下所示:
日期/用户
但是我不确定在使用Python工作表时如何执行此操作。
这里有人有这个班级的经验吗?
当然,对于已经使用过此类的用户来说,这应该是一个简单的解决方案
import xlsxwriter
worksheet.write('A' + str(x), unicode(Date , 'utf-8'), headerBorderFormat)
worksheet.write('B' + str(x), unicode(Username, 'utf-8'), headerBorderFormat)
worksheet.write('C' + str(x), unicode(Date + ' / ' + Username, 'utf-8'), headerBorderFormat)
# get and display one row at a time.
for row in details:
x += 1
worksheet.write('A' + str(x), row[0], dateFormat)
worksheet.write('B' + str(x), row[1], tableDataFormat)
#here I have to concat row[0] + ' / ' + row[1]
workbook.close()
慕田峪9158850
相关分类