python 문자열 찾기, 문자열이 list 에 있는 요소를 포함하는지 체크하기 > 개발

본문 바로가기
사이트 내 전체검색

개발

python 문자열 찾기, 문자열이 list 에 있는 요소를 포함하는지 체크하기

페이지 정보

profile_image
작성자 관리자 (112.♡.173.204)
댓글 0건 조회 1,631회 작성일 21-05-04 17:26

본문

## 출처 : https://www.geeksforgeeks.org/python-test-if-string-contains-element-from-list/


Python | Test if string contains element from list


## Method #1 : Using list comprehension
```
# initializing string
test_string = "There are 2 apples for 4 persons"

# initializing test list
test_list = ['apples', 'oranges']

# printing original string
print("The original string : " + test_string)

# printing original list
print("The original list : " + str(test_list))

# using list comprehension
# checking if string contains list element
res = [ele for ele in test_list if(ele in test_string)]

# print result
print("Does string contain any list element : " + str(bool(res)))
```

## Method #2 : Using any()
```
# initializing string
test_string = "There are 2 apples for 4 persons"

# initializing test list
test_list = ['apples', 'oranges']

# printing original string
print("The original string : " + test_string)

# printing original list
print("The original list : " + str(test_list))

# using list comprehension
# checking if string contains list element
res = any(ele in test_string for ele in test_list)

# print result
print("Does string contain any list element : " + str(res)
```



## 참고
https://www.geeksforgeeks.org/python-test-if-string-contains-element-from-list/

추천0

댓글목록

등록된 댓글이 없습니다.

Total 386건 4 페이지
  • RSS
개발 목록
번호 제목 조회 추천 날짜
3262566005-14
3252783005-11
3243584005-10
3232736005-08
3224486005-07
3212943005-07
3202587005-06
3197004005-06
3183092005-04
3173758005-04
3161682005-04
열람중1632005-04
3143153005-04
3131853005-02
3123159005-01
3112093005-01
3102023005-01
3092771004-30
3081837004-30
3073444004-30

검색


사이트 정보

Copyright © Baragi.Net. All rights reserved.