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

熱線電話:13121318867

登錄
首頁精彩閱讀python中的list和array的不同之處
python中的list和array的不同之處
2018-04-04
收藏

python中的list和array的不同之處

python中的list是python的內(nèi)置數(shù)據(jù)類型,list中的數(shù)據(jù)類不必相同的,而array的中的類型必須全部相同。

在list中的數(shù)據(jù)類型保存的是數(shù)據(jù)的存放的地址,簡單的說就是指針,并非數(shù)據(jù),這樣保存一個list就太麻煩了
例如list1=[1,2,3,'a']需要4個指針和四個數(shù)據(jù),增加了存儲和消耗cpu。
1、numpy中封裝的array有很強大的功能,里面存放的都是相同的數(shù)據(jù)類型
[python] view plain copy
    list1=[1,2,3,'a']    
    print list1    
        
    a=np.array([1,2,3,4,5])    
    b=np.array([[1,2,3],[4,5,6]])    
    c=list(a)   # array到list的轉(zhuǎn)換    
    print a,np.shape(a)    
    print b,np.shape(b)    
    print c,np.shape(c)   
運行結(jié)果:
[python] view plain copy
    [1, 2, 3, 'a'] # 元素數(shù)據(jù)類型不同,并且用逗號隔開    
    [1 2 3 4 5] (5L,) # 一維數(shù)組,類型用tuple表示    
    [[1 2 3]    
     [4 5 6]] (2L, 3L)    
    [1, 2, 3, 4, 5] (5L,)   

注意:

如果a是array,結(jié)果是:[1 2 3 4 5]
如果a是list,結(jié)果是:[1, 2, 3, 4, 5]
2、array的創(chuàng)建:參數(shù)既可以是list,也可以是元組.使用對應(yīng)的屬性shape直接得到形狀

a=np.array((1,2,3,4,5))# 參數(shù)是元組    
    b=np.array([6,7,8,9,0])# 參數(shù)是list    
    c=np.array([[1,2,3],[4,5,6]])# 參數(shù)二維數(shù)組    
    print a  
    print b  
    print c  
    print c.shape 
結(jié)果:
    [1 2 3 4 5]  
    [6 7 8 9 0]  
    [[1 2 3]  
     [4 5 6]]  
    (2L, 3L) 
3、也可以直接改變屬性array的形狀,-1代表的是自己推算。這里并不是T, reshape(())也可以
1)
    c = np.array([[1, 2, 3, 4],[4, 5, 6, 7], [7, 8, 9, 10]])  
    print c.shape # (3L, 4L)  
    c.shape=2,-1  
    print c.shape  
    c.shape=4,-1  
    print c.shape  

結(jié)果:
    (3L, 4L)  
    (2L, 6L)  
    (4L, 3L)  
2)
    c1 = np.array([[1, 2, 3, 4],[4, 5, 6, 7], [7, 8, 9, 10]])  
    d=c1.reshape((4,-1))#d 已變成4 行3 列  
    d[1:2]=66    #把第1行所有元素變?yōu)?6  
    print d  
    d[1:3]=66    #把第1,2 兩行所有元素變?yōu)?6  
    print d 
結(jié)果:
    [[ 1  2  3]  
     [66 66 66]  
     [ 6  7  7]  
     [ 8  9 10]]  
    [[ 1  2  3]  
     [66 66 66]  
     [66 66 66]  
     [ 8  9 10]]  
X1=np.array([[1,2],[3,5],[1,9],[3,4],[1,8],[3,14],[1,10],[31,4]])
nn = np.array([2,3,5,7])
print X1[nn]  #顯示第2,3,5,7 行的內(nèi)容
結(jié)果:
[[ 1  9]
 [ 3  4]
 [ 3 14]
 [31  4]]


數(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(), // 加隨機數(shù)防止緩存 type: "get", dataType: "json", success: function (data) { $('#text').hide(); $('#wait').show(); // 調(diào)用 initGeetest 進行初始化 // 參數(shù)1:配置參數(shù) // 參數(shù)2:回調(diào),回調(diào)的第一個參數(shù)驗證碼對象,之后可以使用它調(diào)用相應(yīng)的接口 initGeetest({ // 以下 4 個配置參數(shù)為必須,不能缺少 gt: data.gt, challenge: data.challenge, offline: !data.success, // 表示用戶后臺檢測極驗服務(wù)器是否宕機 new_captcha: data.new_captcha, // 用于宕機時表示是新驗證碼的宕機 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){ //倒計時完成 $(".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); }