【Python】學習筆記:異常處理is_number()

def is_number(s): try: float(s) return True except ValueError: pass try: import unicodedata unicodedata.numeric(s) return True except
相關文章
相關標籤/搜索