第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

Python 工作表.write 將 2 列連接成 1 列

Python 工作表.write 將 2 列連接成 1 列

紫衣仙女 2022-08-11 17:52:21
我有2列:日期用戶我試圖將兩列連接起來,最終只有一列,如下所示:日期/用戶但是我不確定在使用Python工作表時如何執(zhí)行此操作。這里有人有這個班級的經(jīng)驗嗎?當然,對于已經(jīng)使用過此類的用戶來說,這應(yīng)該是一個簡單的解決方案import xlsxwriterworksheet.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()
查看完整描述

1 回答

?
慕田峪9158850

TA貢獻1794條經(jīng)驗 獲得超8個贊

如果 s 的第一個元素是 datetime 對象,第二個元素是字符串,則當您為日期提供所需的格式時,類似下面的字符串可能會起作用(請參閱 https://strftime.org/):row


# single column header:

col_name = unicode(Date , 'utf-8') + ' / ' + unicode(Username, 'utf-8')

worksheet.write('A' + str(x), col_name, headerBorderFormat)


# get and display one row at a time.

for row in details:

    x += 1

    format = '%Y%m%d'

    cell_content = row[0].strftime(format) + ' / ' + row[1]

    worksheet.write('A' + str(x), cell_content, tableDataFormat)


查看完整回答
反對 回復(fù) 2022-08-11
  • 1 回答
  • 0 關(guān)注
  • 114 瀏覽
慕課專欄
更多

添加回答

舉報

0/150
提交
取消
微信客服

購課補貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學(xué)習(xí)伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號