Notice
Recent Posts
Recent Comments
Link
투케이2K
41. (python/파이썬) in 사용해 배열 (array) 에 특정 데이터 포함 (contains) 여부 확인 실시 본문
[개발 환경 설정]
개발 툴 : SublimeText (PyScript)
개발 언어 : python
[소스 코드]
<!DOCTYPE HTML>
<html lang="ko">
<head>
<title>WebTest</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<!-- [pyScript 사용 관련 CDN 설정 실시] -->
<link rel="stylesheet" href="https://pyscript.net/alpha/pyscript.css" />
<script defer src="https://pyscript.net/alpha/pyscript.js"></script>
<!-- [pyScript 구문 정의 실시] -->
<py-script>
print("=====================================")
print("[main start]")
print("=====================================")
# [초기 변수 선언 실시]
array_Data = ["헬로", "안녕", "투케이"]
# [in 사용해 배열에 특정 값 포함 여부 확인]
contains_1_check = "투케이" in array_Data
contains_2_check = "2K" in array_Data
# [결과 출력 실시]
print("contains_1_check : {}".format(contains_1_check))
print("contains_2_check : {}".format(contains_2_check))
</py-script>
</head>
<!-- [body 콘텐츠 작성] -->
<body>
</body>
</html>
[결과 출력]
반응형
'Python' 카테고리의 다른 글
43. (python/파이썬) 패킹 사용해 배열 (array) 개별 데이터 변수에 매핑 실시 (0) | 2022.07.22 |
---|---|
42. (python/파이썬) extend 사용해 배열 확장 , 추가 수행 실시 (0) | 2022.07.21 |
40. (python/파이썬) String 문자열 길이 , 위치 , 개수 , 인덱스 번지 확인 실시 - len , charat , range , count , idx (0) | 2022.07.21 |
39. (python/파이썬) array 배열 특정 범위 자르기 수행 실시 (0) | 2022.07.21 |
38. (python/파이썬) continue , break 문을 사용해 for 반복문 홀수 값만 출력 수행 실시 (0) | 2022.07.21 |
Comments