Python 程序,检查字符串列表中的所有元素是否都是数字
当需要检查字符串列表中的所有元素是否都是数字时,可以使用“all”运算符。
示例
以下是同样的演示
my_list = ["434", "823", "98", "74", '9870'] print("The list is :") print(my_list) my_result = all(ele.isdigit() for ele in my_list) if(my_result == True): print("All the elements in the list are numeric") else: print("All the elements in the list are not numeric")
输出
The list is : ['434', '823', '98', '74', '9870'] All the elements in the list are numeric
说明
定义了一个整数列表,并显示在控制台上。
使用“all”运算符检查每个元素是否都是数字。
这是使用“isdigit”方法完成的。
该运算的结果被赋给一个变量。
根据结果的布尔值,在控制台上显示相关消息。
广告