本文介绍了加入多个字符串,如果它们在 Python 中不为空的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有四个字符串,其中任何一个都可以为空.我需要将它们连接成一个字符串,它们之间有空格.如果我使用:
I have four strings and any of them can be empty. I need to join them into one string with spaces between them. If I use:
new_string = string1 + ' ' + string2 + ' ' + string3 + ' ' + string4
如果 string1
为空,则结果是新字符串开头的空格.另外,如果 string2
和 string3
为空,我有三个空格.
The result is a blank space on the beginning of the new string if string1
is empty. Also, I have three blank spaces if string2
and string3
are empty.
当我不需要它们时,如何在没有空格的情况下轻松加入它们?
How can I easily join them without blank spaces when I don't need them?
推荐答案
>>> strings = ['foo','','bar','moo']
>>> ' '.join(filter(None, strings))
'foo bar moo'
通过在 filter() 中使用
调用,它删除所有虚假元素.None
By using None
in the filter()
call, it removes all falsy elements.
这篇关于加入多个字符串,如果它们在 Python 中不为空的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!