1、字符串去除空格
other_name = " helloworld ";
print(other_name.strip()); #去除左右空格
print(other_name.lstrip()); #去除左边空格
print(other_name.rstrip()); #去除右边空格
2、字符串大小写以及首字母大写转换
ame = "WEric";
print(name.upper());
print(name.lower());
print(name.title()
1、字符串去除空格
other_name = " helloworld ";
print(other_name.strip()); #去除左右空格
print(other_name.lstrip()); #去除左边空格
print(other_name.rstrip()); #去除右边空格
2、字符串大小写以及首字母大写转换
ame = "WEric";
print(name.upper());
print(name.lower());
print(name.title()