python 判断是否为数字
2019-05-06 本文已影响0人
刘东青_6f21
In [34]: net_ip
Out[34]: ['61.xxx.56.226']
In [35]: net_ip[0].isdigit()
Out[35]: False
In [36]: net_ip[0][0].isdigit()
Out[36]: True
In [34]: net_ip
Out[34]: ['61.xxx.56.226']
In [35]: net_ip[0].isdigit()
Out[35]: False
In [36]: net_ip[0][0].isdigit()
Out[36]: True