您好,登錄后才能下訂單哦!
本篇文章為大家展示了使用python怎么刪除excel中的空值,內(nèi)容簡(jiǎn)明扼要并且容易理解,絕對(duì)能使你眼前一亮,通過(guò)這篇文章的詳細(xì)介紹希望你能有所收獲。
Python主要應(yīng)用于:1、Web開(kāi)發(fā);2、數(shù)據(jù)科學(xué)研究;3、網(wǎng)絡(luò)爬蟲(chóng);4、嵌入式應(yīng)用開(kāi)發(fā);5、游戲開(kāi)發(fā);6、桌面應(yīng)用開(kāi)發(fā)。
import xlrd import pandas as pd import openpyxl target_xls = "合并表1.xlsx" source_xls = ["全1.xlsx", "全2.xlsx","全3.xlsx",\ "全4.xlsx","全5.xlsx","全6.xlsx"] sysptoms=pd.DataFrame() for i in range(len(source_xls)): print(i)#了解打印進(jìn)度 sheet2=pd.read_excel(source_xls[i]).fillna("")#有空格,填充函數(shù),填的空值。要加fillna,不然無(wú)法刪除空值所對(duì)應(yīng)的行 sysptom = sheet2[sheet2['電話'] !=""]#篩選 sysptoms=pd.concat([sysptoms,sysptom])#兩個(gè)dataframe合并,相當(dāng)于合并excel print(type(sysptom)) sysptoms.to_excel(target_xls, index=False)#pandas寫(xiě)入excel用.to_excel print("ok")
補(bǔ)充:python 讀取excel數(shù)據(jù),遇到空單元格的處理方法
讀取excel表格時(shí),經(jīng)常遇到空單元格的情況,這時(shí)需要明確的是,空單元格在python中是什么格式,NULL?NAN還是什么?
在用 xlrd 函數(shù)讀入excel時(shí),空單元格其實(shí)是空字符串'' 形式
infilename = r'D:\aajja.xlsx' workbook = xlrd.open_workbook(infilename) df = workbook.sheet_by_name('sheetname') num_rows = df.nrows - 1 # 我這里是第一行不要,所以跳過(guò)了 num_cols = df.ncols t = 0 im_data = np.zeros((num_rows, num_cols)) for curr_row in range(1, num_rows+1): for curr_col in range(num_cols): rawVal = df.cell(curr_row, curr_col).value if isinstance(rawVal, str): im_data[curr_row - 1, curr_col] = np.nan else: im_data[curr_row - 1, curr_col] = float(rawVal)
if isinstance(rawVal, str)
判斷該單元格數(shù)值是否為字符串,當(dāng)然如果你的excel中本來(lái)就有字符串格式數(shù)據(jù),這里可以更改為判斷是否為空字符串,稍微修改一下即可
上述內(nèi)容就是使用python怎么刪除excel中的空值,你們學(xué)到知識(shí)或技能了嗎?如果還想學(xué)到更多技能或者豐富自己的知識(shí)儲(chǔ)備,歡迎關(guān)注億速云行業(yè)資訊頻道。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。