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

字符串函数

时间:2018-04-17 11:51:09      阅读:153      评论:0      收藏:0      [点我收藏+]

标签:空格   str   code   title   color   strip()   字符   col   函数   

print("lao ZHANG".title())#将每个单词的首字母改为大写。

print("lao ZHANG".upper())#将字符串所有字母改为大写。

print("lao ZHANG".lower())#将字符串所有字母改为小写。

print(" hello ".rstrip()+"!")#去除字符串右边的空格。

print(" hello ".lstrip()+"!")#去除字符串左边的空格。

print(" hello ".strip()+"!")#去除字符串两边的空格。

 

字符串函数

标签:空格   str   code   title   color   strip()   字符   col   函数   

原文地址:https://www.cnblogs.com/2018jason/p/8861996.html

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