python 判断字符串是否为数字
code
def is_number(s): try: float(s) return True except ValueError: pass return False # 测试字符串和数字 print(is_number(‘foo‘)) # False print(is_number(‘1‘)) # True print(is_number(‘1.3‘)) # True print(is_number(‘-1.37‘)) # True print(is_number(‘1e3‘)) # True
相关推荐
xiaoseyihe 2020-08-11
pythonxuexi 2020-07-30
leoaran 2020-07-21
littie 2020-07-19
zcabcd 2020-07-18
yjsflxiang 2020-07-04
liusarazhang 2020-06-28
银角大王 2020-06-25
leoaran 2020-06-22
Lexan 2020-06-15
liusarazhang 2020-06-14
89411051 2020-06-14
chinademon 2020-06-11
leoaran 2020-06-06
tengyuan 2020-06-03
shengnanonly 2020-06-03
joyjoy0 2020-06-02
xinhao 2020-05-28