>>TN81NZ0025-6ren">
gpt4 book ai didi

python - 如何从 Python 中的字符串中删除空格?

转载 作者:行者123 更新时间:2023-11-28 19:30:53 24 4
gpt4 key购买 nike

我需要从 python 中的字符串中删除空格。例如。

str1 = "TN 81 NZ 0025"

str1sp = nospace(srt1)

print(str1sp)

>>>TN81NZ0025

最佳答案

使用str.replace:

>>> s = "TN 81 NZ 0025"
>>> s.replace(" ", "")
'TN81NZ0025'

要删除所有类型的空白字符,请使用 str.translate:

>>> from string import whitespace
>>> s = "TN 81 NZ\t\t0025\nfoo"
# Python 2
>>> s.translate(None, whitespace)
'TN81NZ0025foo'
# Python 3
>>> s.translate(dict.fromkeys(map(ord, whitespace)))
'TN81NZ0025foo'

关于python - 如何从 Python 中的字符串中删除空格?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20991605/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com