2018-11-24(python版的parseInt) 2018-11-24 本文已影响0人 嘿喵heyMeow def parseint(string): return int(''.join([x for x in string if x.isdigit()]))