99999久久久久久亚洲,欧美人与禽猛交狂配,高清日韩av在线影院,一个人在线高清免费观看,啦啦啦在线视频免费观看www

熱線電話:13121318867

登錄
首頁精彩閱讀Python 處理數(shù)據(jù)的實(shí)例詳解
Python 處理數(shù)據(jù)的實(shí)例詳解
2017-09-17
收藏

Python 處理數(shù)據(jù)的實(shí)例詳解

最近用python(3.2的版本)寫了根據(jù)特定規(guī)則,處理數(shù)據(jù)的一個小程序,用到了一些python常用的基礎(chǔ)知識,在此總結(jié)一下:

1,python讀文件
2,python寫文件
3,python的流程控制
4,python的for循環(huán)
5,python的集合,或字符串里判斷是否存在某個元素
6,python的邏輯或,邏輯與
7,python的正則過濾
8,python的字符串忽略空格,和以某個字符串開頭和按某個字符拆分成list

python的打開文件的模式:

關(guān)于open 模式:

w     以寫方式打開,
a     以追加模式打開 (從 EOF 開始, 必要時創(chuàng)建新文件)
r+     以讀寫模式打開
w+     以讀寫模式打開 (參見 w )
a+     以讀寫模式打開 (參見 a )
rb     以二進(jìn)制讀模式打開
wb     以二進(jìn)制寫模式打開 (參見 w )
ab     以二進(jìn)制追加模式打開 (參見 a )
rb+    以二進(jìn)制讀寫模式打開 (參見 r+ )
wb+    以二進(jìn)制讀寫模式打開 (參見 w+ )
ab+    以二進(jìn)制讀寫模式打開 (參見 a+ )

處理代碼如下:

def showtxt(path,outpathname,detailpath):
 
  greenpath=r"C:\\Users\\qindongliang\\Desktop\\tnstxt\\green.txt";
  redpath=r"C:\\Users\\qindongliang\\Desktop\\tnstxt\\red.txt";
  redset=listtxt(redpath)
  greenset=listtxt(greenpath)
  print("紅色詞數(shù)量: ",len(redset))
  print("綠色詞數(shù)量: ",len(greenset))
  #符合1條件的內(nèi)容寫入
  f1=open(r"C:\Users\qindongliang\Desktop\tnstxt\result\\"+detailpath+"\\1.txt",encoding="UTF-8",mode="a+")
  #符合2條件的內(nèi)容寫入
  f2=open(r"C:\Users\qindongliang\Desktop\tnstxt\result\\"+detailpath+"\\2.txt",encoding="UTF-8",mode="a+")
  #符合3條件的內(nèi)容寫入
  f3=open(r"C:\Users\qindongliang\Desktop\tnstxt\result\\"+detailpath+"\\3.txt",encoding="UTF-8",mode="a+")
  #符合4條件的內(nèi)容寫入
  f4=open(r"C:\Users\qindongliang\Desktop\tnstxt\result\\"+detailpath+"\\4.txt",encoding="UTF-8",mode="a+")
 
 
 
  delcount=1;
  f=open(path,encoding="UTF-8",mode="r+")
  fnew=open(outpathname,encoding="UTF-8",mode="a+")
  flog=open(outpathname+".log",encoding="UTF-8",mode="a+")
  #count=1;
  for line in f:
    list=line.strip().split("\t")
    line=line.strip()
    catalogid=list[0]
    score=list[1]
    keyword=clear(list[4].strip())
    if keyword in redset:
      if catalogid.startswith("018022") or catalogid.startswith("018035") or catalogid.startswith("014023003") :
        f1.write(line+"\n")#符合1條件寫入
        fnew.write(line+"\n")#符合1條件寫入
      else:
        flog.write(line+"  不符合條件1 "+"\n")
        delcount=delcount+1
 
    if keyword in greenset:
      if not (catalogid.startswith("018022") or catalogid.startswith("018035") or catalogid.startswith("014023003")) :
        fnew.write(line+"\n")
      else:
        f2.write(line+"\n")
        flog.write(line+"  不符合條件2"+"\n")
        delcount=delcount+1
 
 
    flist=formatStrList(keyword)
    if "sexy" in flist or "sex" in flist:
      if catalogid.startswith("018022") or catalogid.startswith("018035") or catalogid.startswith("014023003") :
        f3.write(line+"\n")
        fnew.write(line+"\n")
      else:
        flog.write(line+" 不符合條件3"+"\n")
        delcount=delcount+1
 
    #if (keyword.find("underwear")!=-1) & keyword.find("sexy")==-1 & keyword.find("sex")==-1:
    if "underwear" in flist and "sexy" not in flist and "sex" not in flist:
      if catalogid.startswith("014032") :
        f4.write(line+"\n")
        fnew.write(line+"\n")
      else:
        flog.write(line+" 不符合條件4"+"\n")
        delcount=delcount+1
 
    #print(list[0]," ",list[1]," ",list[4])
    #print()
 
 
 
  flog.write("刪除總數(shù)目: "+str(delcount))
  f.close()
  f1.close()
  f2.close()
  f3.close()
  f4.close()
  fnew.close()
  flog.close()
 
import re
def clear(str):
  str=re.sub("[\"\"\'\'+]","",str)
  return str
 
 
def formatStrList(keyword):
  list=keyword.split(" ")
  for item in list:
    item.strip();
  return list
 
 
 
 
def listtxt(path):
   f=open(path,encoding="UTF-8")
   s=set()
   for line in f:
     s.add(line.strip())
   f.close()
   return s
 
path1=r"C:\\Users\\qindongliang\\Desktop\\tnstxt\\highfrequency.txt"
pathout1=r"C:\\Users\\qindongliang\\Desktop\\tnstxt\\detail\\a_highfrequency.txt"
detail1path="highfrequency"
path2=r"C:\\Users\\qindongliang\\Desktop\\tnstxt\\highfrequency_d1.txt"
pathout2=r"C:\\Users\\qindongliang\\Desktop\\tnstxt\\detail\\b_highfrequency_d1.txt"
detail2path="highfrequency_d1"
 
#showtxt(path1,pathout1,detail1path)
 
showtxt(path2,pathout2,detail2path)


數(shù)據(jù)分析咨詢請掃描二維碼

若不方便掃碼,搜微信號:CDAshujufenxi

數(shù)據(jù)分析師資訊
更多

OK
客服在線
立即咨詢
客服在線
立即咨詢
') } function initGt() { var handler = function (captchaObj) { captchaObj.appendTo('#captcha'); captchaObj.onReady(function () { $("#wait").hide(); }).onSuccess(function(){ $('.getcheckcode').removeClass('dis'); $('.getcheckcode').trigger('click'); }); window.captchaObj = captchaObj; }; $('#captcha').show(); $.ajax({ url: "/login/gtstart?t=" + (new Date()).getTime(), // 加隨機(jī)數(shù)防止緩存 type: "get", dataType: "json", success: function (data) { $('#text').hide(); $('#wait').show(); // 調(diào)用 initGeetest 進(jìn)行初始化 // 參數(shù)1:配置參數(shù) // 參數(shù)2:回調(diào),回調(diào)的第一個參數(shù)驗(yàn)證碼對象,之后可以使用它調(diào)用相應(yīng)的接口 initGeetest({ // 以下 4 個配置參數(shù)為必須,不能缺少 gt: data.gt, challenge: data.challenge, offline: !data.success, // 表示用戶后臺檢測極驗(yàn)服務(wù)器是否宕機(jī) new_captcha: data.new_captcha, // 用于宕機(jī)時表示是新驗(yàn)證碼的宕機(jī) product: "float", // 產(chǎn)品形式,包括:float,popup width: "280px", https: true // 更多配置參數(shù)說明請參見:http://docs.geetest.com/install/client/web-front/ }, handler); } }); } function codeCutdown() { if(_wait == 0){ //倒計(jì)時完成 $(".getcheckcode").removeClass('dis').html("重新獲取"); }else{ $(".getcheckcode").addClass('dis').html("重新獲取("+_wait+"s)"); _wait--; setTimeout(function () { codeCutdown(); },1000); } } function inputValidate(ele,telInput) { var oInput = ele; var inputVal = oInput.val(); var oType = ele.attr('data-type'); var oEtag = $('#etag').val(); var oErr = oInput.closest('.form_box').next('.err_txt'); var empTxt = '請輸入'+oInput.attr('placeholder')+'!'; var errTxt = '請輸入正確的'+oInput.attr('placeholder')+'!'; var pattern; if(inputVal==""){ if(!telInput){ errFun(oErr,empTxt); } return false; }else { switch (oType){ case 'login_mobile': pattern = /^1[3456789]\d{9}$/; if(inputVal.length==11) { $.ajax({ url: '/login/checkmobile', type: "post", dataType: "json", data: { mobile: inputVal, etag: oEtag, page_ur: window.location.href, page_referer: document.referrer }, success: function (data) { } }); } break; case 'login_yzm': pattern = /^\d{6}$/; break; } if(oType=='login_mobile'){ } if(!!validateFun(pattern,inputVal)){ errFun(oErr,'') if(telInput){ $('.getcheckcode').removeClass('dis'); } }else { if(!telInput) { errFun(oErr, errTxt); }else { $('.getcheckcode').addClass('dis'); } return false; } } return true; } function errFun(obj,msg) { obj.html(msg); if(msg==''){ $('.login_submit').removeClass('dis'); }else { $('.login_submit').addClass('dis'); } } function validateFun(pat,val) { return pat.test(val); }