您好,登錄后才能下訂單哦!
在Python中,可以使用string.punctuation
來獲取所有標點符號,然后通過遍歷待比較的字符串,將字符串中的標點符號替換掉,從而實現忽略標點符號的比較。具體實現如下:
import string
def remove_punctuation(s):
return ''.join(c for c in s if c not in string.punctuation)
str1 = "Hello, World!"
str2 = "Hello World"
str1_no_punct = remove_punctuation(str1)
str2_no_punct = remove_punctuation(str2)
if str1_no_punct == str2_no_punct:
print("字符串相等")
else:
print("字符串不相等")
在上述代碼中,remove_punctuation
函數用于移除字符串中的標點符號。在主程序中,我們定義了兩個待比較的字符串str1
和str2
,然后分別調用remove_punctuation
函數移除它們中的標點符號,最后比較處理后的字符串是否相等。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。