Notice
Recent Posts
Recent Comments
Link
투케이2K
19. (python/파이썬) split 사용해 특정 문자 기준으로 문자열 분리 수행 실시 본문
[개발 환경 설정]
개발 툴 : 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("=====================================")
# [초기 변수 선언 실시]
str_Data = "안녕,반가워,투케이,또만나"
# [개별 문자열 번지 기준으로 분리 실시]
index_1 = str_Data.split(",")[1]
# [특정 문자 기준으로 전체 데이터 분리 실시]
arr_Data = str_Data.split(",")
# [데이터 출력 실시]
print("str_Data : {}".format(str_Data))
print("index_1 : {}".format(index_1))
print("arr_Data : {}".format(arr_Data))
</py-script>
</head>
<!-- [body 콘텐츠 작성] -->
<body>
</body>
</html>
[결과 출력]
반응형
'Python' 카테고리의 다른 글
21. (python/파이썬) 특정 문자열 부분 데이터 출력 수행 실시 - subString (0) | 2022.07.10 |
---|---|
20. (python/파이썬) for 문을 수행하면서 문자열 한글자씩 출력 수행 실시 - charAt (0) | 2022.07.10 |
18. (python/파이썬) input 사용해 사용자로부터 값 입력 받아서 출력 수행 실시 (0) | 2022.07.06 |
17. (python/파이썬) pyscript (파이스크립트) 사용해 튜플 (tuple) 배열 형태 구현 데이터 저장 실시 (0) | 2022.07.05 |
16. (python/파이썬) init , self , type_method 사용해 클래스 생성자 초기화 및 리턴 데이터 확인 실시 (0) | 2021.07.12 |
Comments