作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
有谁知道将一根绳子强制放入一个衬里的替代方法吗?可能是 python 内置方法?或者更好的实现(解释原因)?
例如:
Hello World
Foo Bar
成为
Hello World Foo Bar
def strip_newline(s):
return ' '.join(mystring.splitlines())
strip_newline = lambda _: ' '.join(_.splitlines())
对于那些提醒我关于 \n
字符替换的人,将行字符替换为 。缺点是您还需要注意
\r
,回车符。 :-)
因此您需要执行 mystring.replace('\r', ' ').replace('\n', ' ')
。
最佳答案
我认为简单的 replace
是最快的方法:
s = '''
1
2
3
4
5
'''
print (s.replace("\n", " "))
关于python - 强制字符串成为一个衬里,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36339749/
我是一名优秀的程序员,十分优秀!