有沒有什么方法可以判斷所有整數(shù)的?
可以考慮使用正則表達式定義一個函數(shù)from re import matchdef is_zhengshu(n): return (match('^[+-]{0,1}\d+$', n) is not None)
有沒有什么方法可以判斷所有整數(shù)的?
可以考慮使用正則表達式定義一個函數(shù)from re import matchdef is_zhengshu(n): return (match('^[+-]{0,1}\d+$', n) is not None)