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

熱線電話:13121318867

登錄
首頁精彩閱讀python開發(fā)之字符串string操作方法實例詳解
python開發(fā)之字符串string操作方法實例詳解
2017-09-03
收藏

python開發(fā)之字符串string操作方法實例詳解

這篇文章主要介紹了python開發(fā)之字符串string操作方法,以實例形式較為詳細(xì)的分析了Python針對字符串的轉(zhuǎn)義、連接、換行、輸出等操作技巧,需要的朋友可以參考下

本文實例講述了python開發(fā)之字符串string操作方法。分享給大家供大家參考,具體如下:

python中,對于字符串string的操作,我們有必要了解一下,這樣在我們的以后的開發(fā)中會給我們帶來很多方便

下面是我學(xué)習(xí)的筆記:

#python-string
#python中的字符串用單引號''和雙引號""標(biāo)示
strA = 'this is a string'
strB = "this is a message!"
#打印兩個字符串
print("打印兩個字符串")
print('strA = ' + strA)
print('strB = ' + strB)
print("#############################")
strC = 'I don\'t know anything'
strD = '\'Yes\',I know.'
print("字符串中的轉(zhuǎn)義字符")
print('strA = ' + strC)
print('strB = ' + strD)
print("#############################")
strE = '這是我的blog,歡迎大家來\n我的博客溜達(dá)'
print("字符串中的換行")
print('strA = ' + strE)
print("#############################")
strF = 'this is ''message'
strG = 'Hongten'
strH = strG * 3
print('字符串可以用\'+\'號連接(或者說粘合),也可以用\'*\'號循環(huán)')
print('strF原有形式為:\'this is \'\'message\'')
print('粘合后的strF:' + strF)
print('strG原值為:\'Hongten\',strH = strG * 3,此時strH為:' + strH)   
print("#############################")
strI = 'hongtenzone@foxmail.com'
print('字符串可以使用下標(biāo)(索引)查詢')
print('源字符串strI = \'hongtenzone@foxmail.com\'')
print('字符串strI的長度,len(strI) = ')
print(len(strI))
print('strI[0] = ' + strI[0])
print('strI[10] = ' + strI[10])
print('strI[-1] = strI[len(strI) - 1]')
print('strI[-1] = ' + strI[-1])
print('strI[len(strI) - 1] = ' + strI[len(strI) - 1])
print("#############################")
print('Python 字符串不能改寫。按字符串索引賦值會產(chǎn)生錯誤:')
print('strI[0] = \'x\',這樣就會產(chǎn)生錯誤啦')
print("#############################")
print('過大的索引代替為字符串大小,下界比上界大的返回空字符串')
print('strI[0:100] = ' + strI[0:100])
print("#############################")
print('索引可以是負(fù)數(shù),計數(shù)從右邊開始')
print('strI[-2] = ' + strI[-2])
print('strI[-23:] = ' + strI[-23:])
print("#############################")
print('不過-0 還是0,所以它不是從右邊計數(shù)的!')
print('strI[0] = ' + strI[0])
print('strI[-0] = ' + strI[-0])

運行效果如下:    
Python 2.7.9 (default, Dec 10 2014, 12:24:55) [MSC v.1500 32 bit (Intel)] on win32
Type "copyright", "credits" or "license()" for more information.
>>> ================================ RESTART ================================
>>>
打印兩個字符串
strA = this is a string
strB = this is a message!
#############################
字符串中的轉(zhuǎn)移字符
strA = I don't know anything
strB = 'Yes',I know.
#############################
字符串中的換行
strA = 這是我的blog,歡迎大家來
我的博客溜達(dá)
#############################
字符串可以用'+'號連接(或者說粘合),也可以用'*'號循環(huán)
strF原有形式為:'this is ''message'
粘合后的strF:this is message
strG原值為:'Hongten',strH = strG * 3,此時strH為:HongtenHongtenHongten
#############################
字符串可以使用下標(biāo)(索引)查詢
源字符串strI = 'hongtenzone@foxmail.com'
字符串strI的長度,len(strI) =
23
strI[0] = h
strI[10] = e
strI[-1] = strI[len(strI) - 1]
strI[-1] = m
strI[len(strI) - 1] = m
#############################
Python 字符串不能改寫。按字符串索引賦值會產(chǎn)生錯誤:
strI[0] = 'x',這樣就會產(chǎn)生錯誤啦
#############################
過大的索引代替為字符串大小,下界比上界大的返回空字符串
strI[0:100] = hongtenzone@foxmail.com
#############################
索引可以是負(fù)數(shù),計數(shù)從右邊開始
strI[-2] = o
strI[-23:] = hongtenzone@foxmail.com
#############################
不過-0 還是0,所以它不是從右邊計數(shù)的!
strI[0] = h
strI[-0] = h
>>>

print打印字符串語句如下:    
print('理解切片的最好方式是把索引視為兩個字符之間的點,第一個字符的左邊是0,字符串中第n個字符的右邊是索引n')
print(' +---+---+---+---+---+ ')
print(' | H | e | l | p | A |')
print(' +---+---+---+---+---+ ')
print(' 0  1  2  3  4  5 ')
print('-5 -4 -3 -2 -1 -0')
print('第一行是字符串中給定的0到5各個索引的位置,第二行是對應(yīng)的負(fù)索引。從i 到j(luò) 的切片由這兩個標(biāo)志之間的字符組成')
print('對于非負(fù)索引,切片長度就是兩索引的差。例如,word[1:3] 的長度是2')

運行效果如下:
    
Python 2.7.9 (default, Dec 10 2014, 12:24:55) [MSC v.1500 32 bit (Intel)] on win32
Type "copyright", "credits" or "license()" for more information.
>>> ================================ RESTART ================================
>>>
理解切片的最好方式是把索引視為兩個字符之間的點,第一個字符的左邊是0,字符串中第n個字符的右邊是索引n
 +---+---+---+---+---+
 | H | e | l | p | A |
 +---+---+---+---+---+
 0  1  2  3  4  5
-5 -4 -3 -2 -1 -0
第一行是字符串中給定的0到5各個索引的位置,第二行是對應(yīng)的負(fù)索引。從i 到j(luò) 的切片由這兩個標(biāo)志之間的字符組成
對于非負(fù)索引,切片長度就是兩索引的差。例如,word[1:3] 的長度是2
>>>
希望本文所述對大家Python程序設(shè)計有所幫助。


數(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ù)驗證碼對象,之后可以使用它調(diào)用相應(yīng)的接口 initGeetest({ // 以下 4 個配置參數(shù)為必須,不能缺少 gt: data.gt, challenge: data.challenge, offline: !data.success, // 表示用戶后臺檢測極驗服務(wù)器是否宕機(jī) new_captcha: data.new_captcha, // 用于宕機(jī)時表示是新驗證碼的宕機(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){ //倒計時完成 $(".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); }