摘要: def is_number(s): try: float(s) return True except ValueError: pass try: import unicodedata unicodedata.numeric(s) return True except (TypeError, Valu 阅读全文
posted @ 2016-03-09 10:44 枫之殇 阅读(271) 评论(0) 推荐(0) 编辑