csv 파일이란.. csv는 comma-separated values 의 줄임말로 , 쉼표로 데이터를 구분하는 파일입니다. 유사하게 tsv 파일의 경우 tab으로 데이터를 구분하는 파일입니다. Using csv [link] w = write r = read Type 1 with 를 사용하지 않고 한줄씩 저장하는 방법입니다. open을 통해 test.csv란 파일을 w (write) 할 예정이며 utf-8로 인코딩을 할 것이다 라고 정한 뒤 csv.writer를 통해 한줄씩 입력한 뒤 close() 를 꼭 해주셔야 합니다.(중요) import csv f = open('test.csv', 'w', encoding='utf-8', newline='') wr = csv.writer(f) wr.writerow([..
파이썬 특징 인터프리터 언어 객체지향적 동적 타이핑 (실행 시 자료 검사) C와 같은 언어랑 비교해서 속도가 다소 느리다. (하지만, 일반인은 큰차이를 느끼기 어렵다..) ; 대신에 들여쓰기(tab)으로 구분한다 파이썬의 철학 The Zen of Python으로 PEP20 에서 찾아볼수 있다. 시간이 나면 한번씩 읽어보는 것도 나쁘지 않습니다. import this ''' Beautiful is better than ugly. Explicit is better than implicit. Simple is better than complex. Complex is better than complicated. Flat is better than nested. Sparse is better than dense...
Beautifulsoup - Easy to learn - Require dependency - Relatively slow - Doesn't work well with some pages(e.g. amazon) Examples # In terminal pip install beautifulsoup4 pip install requests # Extract from bs4 import Beautifulsoup import requests URL = 'https://blog.scrapinghub.com/' page = requests.get(URL) soup = BeautifulSoup(page.text, 'html.parser') titles = soup.find_all('div',{'class':'post..
Medium 에서 글을 보다가 전부터 보던 streamlit 관련된 글이 있어서 다시 사용해본 후 쓰는 글입니다. streamlit 공식 페이지 예전에 한번 쓰려 했으나, 당시에는 버그 등이 너무 많아서 아쉬웠지만 이제는 안정화가 되었길 빌며 설치를 진행했습니다. 설치 pip install streamlit 기본 실행 streamlit hello Mapping, Animation, Plotting, Dataframe 등 다양한 데모를 확인 가능합니다. 원하는 파일 실행 시 streamlit run Example pip install opencv-python streamlit run https://raw.githubusercontent.com/streamlit/demo-self-driving/master/..
- Total
- Today
- Yesterday
- Python
- csv
- book
- palindrome
- 키보드
- Gemma
- Git
- collator
- 파이썬
- Fine-Tuning
- 책리뷰
- AWS
- Shell
- error
- Kubernetes
- Algorithm
- LLM
- leetcode
- Binary
- kubens
- Container
- K8S
- kubernetes context
- docker
- 나는리뷰어다
- BASIC
- feed-forward
- 한빛미디어
- go
- lllm
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |