To match any digit, you use the string r"\d" . The r in the front signifies this is a regular expression. The \d is the pattern to match any ...
確定! 回上一頁