题解中的最高赞答案:
re.findall() 正则表达式用法
星号 * :解包作用
lstrip 方法:
自己根据题解的实现:
( python2 也是可以实现的 )
class Solution(object):
def myAtoi(self, str):
"""
:type str: str
:rtype: int
"""
return max(min(int(*re.findall('^[\+\-]?\d+', str.lstrip())), 2**31 - 1 ), -2**31)