码迷,mamicode.com
首页 > 其他好文 > 详细

字符串

时间:2018-08-25 14:39:46      阅读:159      评论:0      收藏:0      [点我收藏+]

标签:center   art   字符串   cap   for   print   ase   format   case   

test = "alex"

v = test.capitalize() #首字母大写

print (v)

v1 = test.casefold()#所有变有小写

print(v1)

v2 = test.lower()

print(v2)

v3 = test.center(20,"#)      

print (v3)  

结果:########alex########

test = "alexalexr"

v4 = test.count(‘e‘)

print (v4)

结果:2

v4 = test.count(‘e‘,5)

结果:1

v5 = test.endswith(‘ex‘)

v6 = test.startswith(‘ex‘)

 

test = "i am {name},{age}"

v = test.format(name=‘alex‘,age=19)

test = "i am [0],[1]"

v = test.format("alex",19")

test = "uasf890"

v = test.isalnum()  #只能字母+数字

 

字符串

标签:center   art   字符串   cap   for   print   ase   format   case   

原文地址:https://www.cnblogs.com/wrw202/p/9533417.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!