python:string/list/dict/file

Posted xy小崽子

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python:string/list/dict/file相关的知识,希望对你有一定的参考价值。

#string 操作要点
a=‘thankyou‘
print a.capitalize()
print a.center(20)
print a.endswith(‘s‘)
print a.startswith(‘t‘)
print a.find(‘o‘)
print a.center(20,‘\‘‘)
print a.rjust(20,‘+‘)

‘oo‘.join(a)
print a
print a.split(‘k‘)
print a.strip()
print a.strip(‘yu‘)
print a.replace(‘o‘,‘ww‘)

ans:

Thankyou
      thankyou     
False
True
6
‘‘‘‘‘‘thankyou‘‘‘‘‘‘
++++++++++++thankyou
thankyou
[‘than‘, ‘you‘]
thankyou
thankyo
thankywwu

 

























以上是关于python:string/list/dict/file的主要内容,如果未能解决你的问题,请参考以下文章