[int(v) for v in stringA.rsplit("-", 1)[-1].split(",")]
rsplit 从右侧拆分-所有数字都显示在最后一个数字之后 "-" .然后我们 split 通过 ","
rsplit
"-"
split
","