Python 파이썬
2019. 10. 9. 13:00
문자열을 역순으로 출력하는 프로그램을 구현
[결과창]
[코드]
sentence = str(input())
a=""
print("")
print("역순으로 출력")
print("")
for i in range(len(sentence)):
a+=sentence[-(i+1)]
print(a)
'Python 파이썬' 카테고리의 다른 글
[파이썬] up&down 게임 (0) | 2019.10.09 |
---|---|
[파이썬] 십진수를 2진수로 변환 (1) | 2019.10.09 |
[파이썬] 구구단 출력 프로그램 (0) | 2019.10.09 |
[Python] 계좌관리 프로그램 (0) | 2019.07.25 |
[Python] 파이썬 if문 실습 두 수 비교 (0) | 2019.07.15 |