Longmeng
Longmeng
未归档
python字符串去除空格
全部文章
未归档
java学习笔记(7)
Java虚拟机(2)
JAVA集合(5)
数据结构(7)
计算机网络(1)
归档
标签
去牛客网
登录
/
注册
python字符串去除空格
518 浏览
0 回复
2019-09-12
Longmeng
+关注
strip()方法
str1 = “a b c”
str1.strip()
replace()方法
replace(old, new, count)
str2 = ‘a b c’
str2.replace(" ", “”)
join()和split()方法
str3 = ‘a b c’
str4 = str3.split() #str4 [‘a’, ‘b’, ‘c’]
str5 = “”.join(str4) # str5 “abc”
举报
收藏
赞
评论加载中...