python 統計檔案中有多少空行

打個醬油賣萌‍♂️發表於2020-12-22
fp=open("d:\\a.txt","r")
count=0
for i in fp:
	if i.split()=="":
		count+=1
print(count)

相關文章