输入字符串如下所示:
line = "Cat Jumped the Bridge"
输出应该是“跳桥”。
我试过了
s2 = re.match('\W+.*', line).group()
但它返回
Traceback (most recent call last):
File "regex.py", line 7, in <module>
s2 = re.match('\W+.*', line).group()
AttributeError: 'NoneType' object has no attribute 'group'
所以显然这场比赛失败了。
感谢您的任何建议。乔