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

熱線電話:13121318867

登錄
首頁精彩閱讀Python yield使用方法示例
Python yield使用方法示例
2018-02-07
收藏

Python yield使用方法示例

這篇文章主要介紹了Python yield使用方法,大家參考使用吧


1. iterator
疊代器最簡單例子應該是數(shù)組下標了,且看下面的c++代碼:

代碼如下:
int array[10];
for ( int i = 0; i < 10; i++ )
    printf("%d ", array[i]);

疊代器工作在一個容器里(array[10]),它按一定順序(i++)從容器里取出值(array[i])并進行操作(printf("%d ", array[i])。

上面的代碼翻譯成python


代碼如下:
 array = [i for i in range(10)]
for i in array:

    print i, 

首先,array作為一個list是個容器,其次list這個內(nèi)建類型有默認的next行為,python發(fā)現(xiàn)這些之后采取的秘密的沒被各位看到的動作是:拿出array這丫容器的疊代器,從里面next一下把值給i供for循環(huán)主體處置,for把這個值print了。

現(xiàn)在的問題是數(shù)據(jù)可以做容器疊代,代碼可以嗎?

2. constructor

怎么把函數(shù)變成constructor?  在函數(shù)體里有yield就行了!

代碼如下:
def gen():
    print 'enter'
    yield 1
    print 'next'
    yield 2
    print 'next again'

for i in gen():
    print i

各位!python看到gen函數(shù)里出現(xiàn)yield,知道可以用next了,問題是怎么對代碼這個容器玩next?
從容器里拿到iterator的時候它還什么也不是,處在容器入口處,對于數(shù)組來說就是下標為-1的地方,對于函數(shù)來說就是函數(shù)入口嘛事沒干,但是萬事俱備就欠next。
開始for i in g,next讓itreator爬行到y(tǒng)ield語句存在的地方并返回值,
再次next就再爬到下一個yield語句存在的地方并返回值,依次這樣直到函數(shù)返回(容器盡頭)。
您一定看出來上面代碼的輸出是:
enter
1
next
2
next again
3. 使用yield
yield的代碼疊代能力不但能打斷函數(shù)執(zhí)行還能記下斷點處的數(shù)據(jù),下次next書接上回,
這正是遞歸函數(shù)需要的。
例如中序遍歷二叉樹:
(應該是David Mertz寫的)

代碼如下:

def inorder(t):
    if t:
        for x in inorder(t.left):
            yield x
        yield t.label
        for x in inorder(t.right):
            yield x
for n in inorder(tree)
    print n



數(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)用相應的接口 initGeetest({ // 以下 4 個配置參數(shù)為必須,不能缺少 gt: data.gt, challenge: data.challenge, offline: !data.success, // 表示用戶后臺檢測極驗服務器是否宕機 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); }