传送门
题意:出现的数字,取最后一个数字即可。
Python正则表达式提取数字
代码:
import re str = input() a = re.findall(r'-*d+(?:.d+)?',str) print(a[len(a)-1])