iT邦幫忙

ddx 所有喜歡的回答 127

利用C# 快速建立 outlook 聯絡人群組、聯絡人,指令碼卡關求解

請先加到服務參考 using Outlook = Microsoft.Office.Interop.Outlook; private static void...

2022-12-26 ‧ 由 s82910g 提問

Python小白發問

a = input() a = a.upper()#裡面所有的字都會變成大寫 ########若你不想改變原內容 a = input() b = a.upper...

2022-12-13 ‧ 由 kakarot 提問

請問python如何刪除空白值併計算字串個數

刪除空白元素這裡有5 種方法 計算list長度則是3 種方法 可以挑你喜歡的去用

2022-09-16 ‧ 由 不明 提問

請問python如何刪除空白值併計算字串個數

len(list(filter(lambda i: i != '', input)))

2022-09-16 ‧ 由 不明 提問