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 | 31 |
Tags
- 리눅스
- MySQL
- Google Analytics
- 티스토리
- Pandas
- 텐서플로
- 서평
- 서평단
- 파이썬
- 시각화
- MATLAB
- 매틀랩
- 한빛미디어
- Blog
- Visualization
- matplotlib
- Ga
- Python
- python visualization
- 딥러닝
- 파이썬 시각화
- 블로그
- tensorflow
- Tistory
- 통계학
- SQL
- Linux
- 독후감
- 한빛미디어서평단
- 월간결산
Archives
- Today
- Total
목록지정 (3)
pbj0812의 코딩 일기
[LINUX] 지정된 부분만 표시
cut 검색
ComputerLanguage_Program/LINUX
2018. 9. 4. 23:13
[LINUX] 지정된 문자열 출력
echo 옵션 문자열 -n : 커서 다음줄 ex) echo -n abc -e : \옵션 기능 수행 \옵션\a : 경고음\b : 백스페이스\t : 수평 탭\v : 수직 탭\\ : 백슬래시ex) echo -e "\a abc"
ComputerLanguage_Program/LINUX
2018. 9. 4. 23:10
[PYTHON] 알파벳 순서대로 123~ 지정하기
import sysimport math # Auto-generated code below aims at helping you parse# the standard input according to the problem statement. s = input() # Write an action using print# To debug: print("Debug messages...", file=sys.stderr) t = 0for c in s.lower(): t += ord(c) - ord('a') + 1print(t)
ComputerLanguage_Program/PYTHON
2018. 9. 1. 02:15