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

熱線電話:13121318867

登錄
首頁精彩閱讀python基礎(chǔ)教程之分支、循環(huán)簡單用法
python基礎(chǔ)教程之分支、循環(huán)簡單用法
2018-01-26
收藏

python基礎(chǔ)教程之分支、循環(huán)簡單用法

本文實例講述了python分支、循環(huán)簡單用法。分享給大家供大家參考,具體如下:

講程序設(shè)計,不得不講到順序、分支、循環(huán)。

順序就是從上到下運行代碼,這個很簡單,不用再說了。

在講分支、循環(huán)的時候,要特別注意python代碼中的強制縮進(jìn)。
我們先看看分支:
(1)簡單的if-else
Python代碼:    
a = '1'
if a == 1: #注意后面有一個冒號。其中“==”是相等判斷
  print 1 #注意print 函數(shù)之前有一個tab鍵,這就是python的強制縮進(jìn)
else: #注意else后面的冒號
  print 0 #注意縮進(jìn)
if (a == 1): #可以添加園括號
  print 1
else:
   print 0
輸出是:
1
1
(2)and 邏輯判斷
Python代碼:    
a = 1
b = 0
if a == 1 and b == 1: #and 是邏輯“與”運算,自然“or”就是邏輯“或”運算
  print 1
else:
  print 0
輸出是:
0
(3)分支if -else if
更近一步看:
Python代碼:    
#else if
a = 1
b = 0
if a < 1:
  print 1
elif b < 1: #注意這里不是else if ,而是elif。
  print 0
輸出是:
0
以上三個就講完了分支判斷。下面講循環(huán)。
(一)開始是for循環(huán):
其for循環(huán)根本上是元素的遍歷:
如:
python代碼:    
for i in range(0, 5): #注意range是一個函數(shù)
  print i
輸出是:
0
1
2
3
4

其中range是一個函數(shù),表示產(chǎn)生一個[0,5)的序列。這里用“[0,5)”這種數(shù)學(xué) 表達(dá)方式就是為了說明是大于等于0,小于5。是一個半開半閉區(qū)間。注意在python中都是使用半開半閉區(qū)間(我沒有見過其他的形式,或許可以自己實現(xiàn))。

而“for i in range(0, 5):”的含義就是從“0,1,2,3,4”這個序列中,每次取出一個元素賦值個變量i,每次執(zhí)行print函數(shù),打印元素i的值。

在if和for語句結(jié)束的地方都有一個冒號,這是為了告訴編譯器,當(dāng)前行結(jié)束了,應(yīng)該解釋后面一行了。

有了這個冒號,我們其實也可以不換行,直接執(zhí)行print函數(shù)。

Python代碼:   

for i in range(0, 5):print i

(二)while 循環(huán)

while循環(huán),當(dāng)while條件成立的時候,執(zhí)行while內(nèi)部的程序段。
Python代碼:    
i = 10
while i > 0:
  print i
  i -= 1 #注意python不支持i--,i++,--i,++i之類的運算

數(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 進(jìn)行初始化 // 參數(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); }