python3 去除字符串中的數字

來自https://stackoverflow.com/questions/12851791/removing-numbers-from-stringhtml python3:python from string import digits s = 'abc123def456ghi789zero0' remove_digits = str.maketrans('', '', digits) re
相關文章
相關標籤/搜索