투케이2K

20. (python/파이썬) for 문을 수행하면서 문자열 한글자씩 출력 수행 실시 - charAt 본문

Python

20. (python/파이썬) for 문을 수행하면서 문자열 한글자씩 출력 수행 실시 - charAt

투케이2K 2022. 7. 10. 14:14

[개발 환경 설정]

개발 툴 : 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 = "안녕투케이2K반가워"


        # [문자열 인덱스 번지를 지정해서 특정 문자 출력 실시]
        index_0 = str_Data[0]
        index_1 = str_Data[1]

        print("index_0 : {}".format(index_0))
        print("index_1 : {}".format(index_1))


        # [for 문을 돌면서 한글자씩 출력 실시]
        for i in range(0, len(str_Data), 1):
            print("DATA : {}".format(str_Data[i]))
        print("")

    </py-script>
    
</head>





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


</html>
 

[결과 출력]

 

 

반응형
Comments