Computer >> 컴퓨터 >  >> 프로그램 작성 >> Python

문자열 목록의 모든 요소가 숫자인지 확인하는 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' 방법을 사용하여 수행됩니다.

  • 이 연산의 결과는 변수에 할당됩니다.

  • 결과의 Boolean 값에 따라 해당 메시지가 콘솔에 표시됩니다.