투케이2K

34. (python/파이썬) startswith , endswith , find 를 사용해 특정 문자 시작 , 종료 여부 확인 및 위치 인덱스 값 출력 본문

Python

34. (python/파이썬) startswith , endswith , find 를 사용해 특정 문자 시작 , 종료 여부 확인 및 위치 인덱스 값 출력

투케이2K 2022. 7. 20. 08:08

[개발 환경 설정]

개발 툴 : 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>




    <!-- 
    // -----------------------------------------
    [요약 설명]
    // -----------------------------------------
    startswith 는 특정 문자로 시작하는지 확인합니다
    // -----------------------------------------
    endswith 는 특정 문자로 종료하는지 확인합니다
    // -----------------------------------------
    find 는 특정 문자 위치를 확인합니다
    // -----------------------------------------
     -->




    <!-- [pyScript 구문 정의 실시] -->
    <py-script>
        print("=====================================")
        print("[main start]")
        print("=====================================")


        # [초기 변수 및 데이터 선언 실시]
        str_Data = "안녕 반가워 투케이 2K"


        # [startswith 사용해 특정 문자로 시작하는지 확인 실시]
        start_One = str_Data.startswith("안")
        start_Two = str_Data.startswith("투")


        # [endswith 사용해 특정 문자로 종료하는지 확인 실시]
        end_One = str_Data.endswith("K")
        end_Two = str_Data.endswith("투")


        # [find 사용해 특정 문자 위치 확인 실시]
        find_One =  str_Data.find("투")
        find_Two =  str_Data.find("h")


        # [결과 출력 실시]
        print("str_Data [원본] : {}".format(str_Data))
        print("start_One [안] 시작 : {}".format(start_One))
        print("start_Two [투] 시작 : {}".format(start_Two))
        print("end_One [K] 종료 : {}".format(end_One))
        print("end_Two [투] 종료 : {}".format(end_Two))
        print("find_One [투] 위치 : {}".format(find_One))
        print("find_Two [h] 위치 : {}".format(find_Two))

    </py-script>
    
</head>





<!-- [body 콘텐츠 작성] -->
<body>
</body>


</html>
 

[결과 출력]

 

 

반응형
Comments