Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- 한빛미디어
- MySQL
- python visualization
- SQL
- Tistory
- 매틀랩
- 리눅스
- tensorflow
- 블로그
- MATLAB
- 통계학
- Python
- 한빛미디어서평단
- 시각화
- 텐서플로
- 월간결산
- Google Analytics
- 파이썬
- 서평단
- 서평
- Linux
- matplotlib
- 딥러닝
- 독후감
- Blog
- 티스토리
- Visualization
- Pandas
- 파이썬 시각화
- Ga
Archives
- Today
- Total
pbj0812의 코딩 일기
[PYTHON] 글자 입력 반대로 출력하기 본문
import sys
import math
# Auto-generated code below aims at helping you parse
# the standard input according to the problem statement.
s = input().split()[::-1]
# Write an action using print
# To debug: print("Debug messages...", file=sys.stderr)
print(*s)
'ComputerLanguage_Program > PYTHON' 카테고리의 다른 글
[PYTHON] 숫자 역정렬 (0) | 2018.09.01 |
---|---|
[PYTHON] 알파벳 순서대로 123~ 지정하기 (0) | 2018.09.01 |
[PYTHON] 진수 변환 (0) | 2018.09.01 |
[PYTHON] 문자 변환 문제 (0) | 2018.09.01 |
[PYTHON] hex 에서 decimal 변환하기 (0) | 2018.09.01 |
Comments