python基礎2

來源:互聯網
上載者:User

標籤:python基礎2   lower   orm   去除   with   strip   art   布爾   form   

#strip 去除指定字元
#name=‘*egon**‘
#print(name.strip(‘*‘))#去除兩端的*
#print(name.lstrip(‘*‘))#去除左端的*
#print(name.rstrip(‘*‘))#去除右端的*

#lower,upper
#print(‘ABC‘.lower())
#print(‘abc‘.upper())

#startswith,endswith 布爾,是否以指定字元開始和結束
#name=‘abc_de‘
#print(name.startswith(‘abc‘))
#print(name.endswith(‘de‘))

#format的三種玩法
#res1=‘{} {} {}‘.format(‘egon‘,18,‘male‘)
#print(res1)
#res2=‘{1} {0} {1}‘.format(‘egon‘,18,‘male‘)
#print(res2)
#res3=‘{name} {age} {sex}‘.format(sex=‘male‘,name=‘egon‘,age=18)
#print(res3)

#split
#name=‘1,2,3,4‘
#print(name.split(‘,‘)) #預設分隔符號為空白格[‘1‘, ‘2‘, ‘3‘, ‘4‘]
#print(name.split(‘,‘,1))#只分隔第一個逗號[‘1‘, ‘2,3,4‘]
參考:http://www.cnblogs.com/linhaifeng/articles/7133357.html

python基礎2

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.