250x250
Notice
Recent Posts
Recent Comments
| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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
- 코사인 유사도
- 지마켓
- Topics
- java
- oracle
- (깃)git bash
- 크롤링
- 게시판 만들기
- r
- Websocket
- lda
- 토픽추출
- 자바
- spring MVC(모델2)방식
- jsp 파일 설정
- 방식으로 텍스트
- 네이버뉴스
- pytorch
- 이력서
- 과학백과사전
- db
- 幼稚园杀手(유치원킬러)
- Gmarket
- word2vec
- RESFUL
- 파이썬
- test
- mysql
- Python
- tomoto
Archives
- Today
- Total
목록Python (125)
무회 Blog
python: DaiMa_python, 파이썬-200514
Python
2020. 5. 14. 08:47
win10 EKL 셋팅방법
1. zip 파일을 푼다
Python
2020. 5. 11. 18:22
python: 파이썬(python) mod1.py 파일쓰기 (open함수_import)
# # mod1.py # data = """def add(a, b): # return a + b # def sub(a, b): # return a-b # """ # with open("mod1.py", "w") as f: # f.write(data) # import mod1 as gg # print(gg.add(8,2)) # gg.sub(100,30)
Python
2020. 5. 7. 16:23
Python # 파이썬 + - * / 연산을 할수 있는 클래스 (파이썬클래스) + 상속
# 파이썬 + - * / 연산을 할수 있는 클래스 class FourCal: def __init__(self, first, second): self.first = first self.second = second # def setdata(self,first,second): # self.first = first # self.second = second def add(self): result = self.first + self.second return result def mul(self): result = self.first * self.second return result def sub(self): result = self.first - self.second return result def div(self)..
Python
2020. 5. 7. 16:21