"Python 문자열 뒤집기"의 두 판 사이의 차이

(새 문서: ==문자열 뒤집기== <source lang="python"> def reverse_str(text): str = "" for ch in text: str = ch + str; print(str); reverse_str("Hello John") </sourc...)
 
9번째 줄: 9번째 줄:
reverse_str("Hello John")
reverse_str("Hello John")
</source>
</source>
==함께 보기==
*[[파이썬 기초를 위한 예제]]


[[분류: Python]]
[[분류: Python]]

2016년 10월 15일 (토) 20:51 판

1 문자열 뒤집기

def reverse_str(text):
    str = ""    
    for ch in text:
        str = ch + str;
    print(str);  

reverse_str("Hello John")

2 함께 보기

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}