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 |
Tags
- MATLAB
- Pandas
- 리눅스
- Tistory
- 매틀랩
- 서평
- 파이썬
- Visualization
- Linux
- 서평단
- 한빛미디어
- 티스토리
- MySQL
- 딥러닝
- SQL
- 한빛미디어서평단
- Google Analytics
- python visualization
- 독후감
- Ga
- Python
- 통계학
- Blog
- 시각화
- 블로그
- 텐서플로
- 월간결산
- 파이썬 시각화
- matplotlib
- tensorflow
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