gpt4 book ai didi

python - 如何去除 Python 中的所有前导和尾随标点符号?

转载 作者:太空狗 更新时间:2023-10-29 18:25:04 24 4
gpt4 key购买 nike

<分区>

我知道如何删除字符串中的所有标点符号。

import string

s = '.$ABC-799-99,#'

table = string.maketrans("","") # to remove punctuation
new_s = s.translate(table, string.punctuation)

print(new_s)
# Output
ABC79999

如何在 Python 中删除所有前导和尾随标点符号? '.$ABC-799-99,#' 的期望结果是 'ABC-799-99'

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