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

熱線電話:13121318867

登錄
首頁精彩閱讀Python實(shí)現(xiàn)比較兩個列表(list)范圍
Python實(shí)現(xiàn)比較兩個列表(list)范圍
2018-03-22
收藏

Python實(shí)現(xiàn)比較兩個列表(list)范圍

有一道題: 比較兩個列表范圍,如果包含的話,返回TRUE,否則FALSE。 詳細(xì)題目如下:

Create a function, this function receives two lists as parameters, each list indicates a scope of numbers, the function judges whether list2 is included in list1.

Function signature:
    differ_scope(list1, list2)

Parameters:
    list1, list2    - list1 and list2 are constructed with strings,
                      each string indicates a number or a scope of
                      numbers. The number or scope are randomly, can
                      be overlapped. All numbers are positive.

E.g.
                            ['23', '44-67', '12', '3', '20-90']
 Return Values:
    True            - if all scopes and numbers indicated by list2 are included in list1.
    False           - if any scope or number in list2 is out of the range in list1.
 Examples:
    case1    - list1 = ['23', '44-67', '12', '3', '20-90']
               list2 = ['22-34', '33', 45', '60-61']
               differ_scope(list1, list2) == True
    case2    - list1 = ['23', '44-67', '12', '3', '20-90']
               list2 = ['22-34', '33', 45', '60-61', '100']
               differ_scope(list1, list2) == False

貼上自己寫的代碼如下:(備注: python 2.7.6)

defdiffer_scope(list1, list2):
  print"list1:"+str(list1)
  print"list2:"+str(list2)
  #設(shè)置臨時(shí)存放列表
  list1_not_=[]#用于存放列表1正常的數(shù)字值,當(dāng)然要用int()來轉(zhuǎn)換
  list1_yes_=[]#用于存放列表1中范圍值如 44-67
  list1_final=[]#用于存放列表1中最終范圍值 如:[1,2,3,4,5,6,7,8,9,10]
  temp1   =[]
    
  list2_not_=[] #用于存放列表2正常的數(shù)字值,當(dāng)然要用int()來轉(zhuǎn)換
  list2_yes_=[] #用于存放列表2中范圍值如 44-67
  list2_final=[] #用于存放列表2中最終范圍值 如:[1,2,3,4,5,6,7,8,9,10]
  temp2  =[]
  
  temp   =[] #用于存放列表1,與列表2比較后的列表,從而判斷結(jié)果為True還是False.
    
  #對列表1進(jìn)行處理
  foriinrange(len(list1)):#用FOR循環(huán)對列表1進(jìn)行遍歷
    tag=0
    iflist1[i].find('-')>0:#對含范圍的數(shù)字進(jìn)行處理,放到list_yes_列表中 
      strlist=list1[i].split('-')
    list1_yes_=range(int(strlist[0]),int(strlist[1])+1)#讓其生成一個范圍列表
    foreachinlist1_yes_:    #FOR循環(huán)遍歷所有符合條件的.
        [temp1.append(each)]
    else:          #對列表1中正常的數(shù)字進(jìn)行處理,放到list_not_列表中
      list1_not_.append(int(list1[i]))#對列表1中進(jìn)行處理,放到list_yes_   
  [temp1.append(i)foriinlist1_not_ifnotiintemp1]#去除重復(fù)項(xiàng)
  list1_final=sorted(temp1)#比較后,排序,并放到list1_final列表中
  print"list1_final value is:"+str(list1_final)#打印排序后最終list1_final列表
  
    
  #對列表2進(jìn)行處理
  foriinrange(len(list2)):
    iflist2[i].find('-')>0:
      strlist=list2[i].split('-')
    list2_yes_=range(int(strlist[0]),int(strlist[1])+1)
    foreachinlist2_yes_:
        [temp2.append(each)]
      print"Temp2:"+str(temp2)
    else:
      list2_not_.append(int(list2[i]))
  [temp2.append(i)foriinlist2_not_ifnotiintemp2]
  list2_final=sorted(temp2)
  print"list2_final value is:"+str(list2_final)
  
  #對兩個列表進(jìn)行比較,得出最終比較結(jié)果.
  [temp.append(i)foriinlist2_finalifnotiinlist1_final]#比較兩個列表差值.
  print"In list2 but not in list1:%s"%(temp)#打印出列表1與列表2的差值
  iflen(temp)>=1:
    print"The result is: False"
  else:
    print"The result is: True"
  
if__name__=='__main__':
  list1=['23','44-67','12','3','90-100']
  list2=['22-34','33','45']
  differ_scope(list1,list2)
總結(jié):
1. 這道題關(guān)鍵是想法,如果整成坐標(biāo)的方式來比較,會很麻煩。
2. 列表轉(zhuǎn)成范圍后,如果消除重復(fù)項(xiàng),同樣是里面的關(guān)鍵所在。
3. 其次是對列表遍歷的操作,同樣挺重要。


數(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ī)時(shí)表示是新驗(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ì)時(shí)完成 $(".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); }