Python 判断列表元素是否为一位数
时间: 2024-02-16 16:08:34 浏览: 53
python判断变量是否为列表的方法
可以通过遍历列表中的元素,使用Python内置的isnumeric()方法来判断该元素是否为数字字符,然后判断其长度是否为1来确定该元素是否为一位数。代码如下:
```
lst = ['1', '12', 'a', '5', '56']
for item in lst:
if item.isnumeric() and len(item)==1:
print(item + " is a single digit.")
else:
print(item + " is not a single digit.")
```
输出结果为:
```
1 is a single digit.
12 is not a single digit.
a is not a single digit.
5 is a single digit.
56 is not a single digit.
```
阅读全文