作业四:字符串2
2019-11-20 本文已影响0人
大冰S
- 字符串‘ hello ’,使用字符串的方法去除空格
- 将字符串“you need python”中的空格用*替代
字符串‘ hello ’,使用字符串的方法去除空格
s = ' hello '
s.strip()
'hello'
将字符串“you need python”中的空格用*替代
s = 'you need python'
s.replace(' ','')
'youneed*python'
s = ' hello '
s.strip()
'hello'
s = 'you need python'
s.replace(' ','')
'youneed*python'