일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- ChatGPT
- Django
- db
- 네인생우습지않다
- Face Detection
- 비밀번호변경
- UPSERT
- Python
- Git
- 나만의주식5법칙
- 훌륭한모국어
- OpenCV
- 꼭읽어봐야할책
- 독후감
- linux명령어
- 성선택
- 공작과개미
- 서울로가자
- 클라우드
- 다산의마지막습관
- 헬레나크로닌
- php
- todolist
- MySQL
- 일일투자금액
- delete
- 지방사람이보는서울사람
- 중용
- git 업로드
- 옹졸함
- Today
- Total
목록Python (4)
Terry Very Good
https://colab.research.google.com/ Google Colaboratory colab.research.google.com 1. 아래와 같이 colab에서 새 노트를 만들고, hello world! 를 출력해보자 2. KRX 종목을 가져와서 출력하고, 삼성전자의 21년간 주가현황을 출력하고 엑셀로 저장해줘! # finance-datareader 다운로드 !pip install finance-datareader # 국내 증시 데이터 수집 예시 import FinanceDataReader as fdr # KRX 종목 코드 가져오기 krx = fdr.StockListing('KRX') print(krx.head()) # 삼성전자(005930)의 2021년 데이터 가져오기 samsung =..
#argument에 기본값을 넣는 경우(a는 필수 argument) def func(a, b=1, c=2): """ func returns b and sum of a,b,c """ print(a, b, c); return b, a+b+c func(3,c =3) 결과: 3 1 3 (1, 7) func? Signature: func(a, b=1, c=2) Docstring: func returns b and sum of a,b,c File: d:\anaconda3\envs\djangoenv\workshop\ Type: function #튜플과 딕셔너리를 argument로 집어넣는 함수 tp = (4,5,6) dr = {'a':7,'b':8,'c':9} print(func(*tp))# *을 하나 넣으면 Key..
s = 'life is short, so python is easy' punct = ' ,.' # 카운트에서 뺄 단어 d= {} for c in s: if c in punct: continue d[c] = d.get(c,0) + 1 d 결과: {'l': 1, 'i': 3, 'f': 1, 'e': 2, 's': 5, 'h': 2, 'o': 3, 'r': 1, 't': 2, 'p': 1, 'y': 2, 'n': 1, 'a': 1} punct = ' ,.' d= {} for c in s.split(' '): if c in punct: continue d[c] = d.get(c,0) + 1 d 결과: {'life': 1, 'is': 2, 'short,': 1, 'so': 1, 'python': 1, 'easy'..
1. PYTHON 다운로드 https://www.python.org/downloads/ 에서 ver(3.9) 다운(아래 유의사항 참고) (1). Windows x86-64 executable installer 로 다운로드 클릭 후 (2). Add Python 3.9 to PATH 체크박스 설정 후 (3). customize install 클릭(다음 다음 하다가 location 에 C:\Python39 로 수정) (4). cmd 켜고 python 쓰면 켜질거야 2. PIP 다운로드 cmd 접속 후 #WINDOW curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py python get-pip.py python -m pip install --upgrade pip ..