标签:空格 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