일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- NPM
- mapreduce
- vaadin
- 보조정렬
- IntelliJ
- mybatis
- Sqoop
- Java
- plugin
- 공정능력
- window
- tomcat
- Android
- GIT
- SPC
- SSL
- hadoop
- xPlatform
- table
- SQL
- react
- Eclipse
- R
- Kotlin
- JavaScript
- MSSQL
- Spring
- Express
- Python
- es6
- Today
- Total
목록python (24)
DBILITY
그냥 해봤다. 새로운 언어(?)의 사용법을 조금 익히면 항상 그렇다. text파일을 write mode로 여는 부분이 있고 1~46까지 6개의 무작위 번호를 추출하는 부분은 다음과 같다. >>> import random >>> random.sample(range(1,47),k=6) [37, 21, 2, 27, 31, 28] #결과가 오름차순으로 정렬이 안되어 있어 다음과 같이 sorted를 사용 >>> sorted(random.sample(range(1,47),k=6)) [11, 25, 29, 31, 41, 42] import random import re def lotto(game=5): ele_len: int = 6 NL: str = '\n' try: f = open('fortune_num.txt',..
requests Requests is a simple, yet elegant, HTTP library. >>> import requests >>> r = requests.get('https://api.github.com/user', auth=('user', 'pass')) >>> r.status_code 200 >>> r.headers['content-type'] 'application/json; charset=utf8' >>> r.encoding 'utf-8' >>> r.text '{"type":"User"...' >>> r.json() {'disk_usage': 368627, 'private_gists': 484, ...} #image save imgRequest = requests.get(image..
binary는 mode에 b가 추가 됨 # archive write mode f = open('a.txt', encoding='utf-8', mode='w') f.write('나 --> 언제 왔냐?\n') f.write('너 --> 쪼끔 전에 왔다.\n') f.close() # archive append mode f = open('a.txt', encoding='utf-8', mode='a') f.write('나 --> 뭐하러 왔냐?\n') f.write('너 --> 내비~족구화! 길을 잘못 들어서..\n') f.write('나 --> 머더뻐꾹!\n') f.close() # archive read mode f = open('a.txt', encoding='utf-8', mode='r') w=f.read(..
모듈은 프로그램의 기능 단위 정도 되는데, 파이썬에선 파일 단위로 작성된 코드를 지칭한다. 기능을 수행하기 위한 자료구조와 함수의 집합 정도 될까?! 일단 C언어의 header file 정도로 이해하고 넘어가자. IDLE의 File메뉴에서 새파일을 선택하고 코드를 작성한다. def call_hello(name): print("Welcome~ "+name) def call_goodby(name): print("Bye~ "+name) coder="papa" 저장 후 Shell에서 >>> import ex_01 >>> type(ex_01) >>> ex_01.call_hello("elise") Welcome~ elise >>> ex_01.call_goodby("grace") Bye~ grace >>> ex_01..
javascript나 c언어의 일반적인 함수 구조를 생각하면 되겠다. function 대신 def를 사용한다. #반환값이 없는 경우 >>> def print_ntimes(n): for i in range(1,n+1): print("hello~"+str(i)) >>> print_ntimes(3) hello~1 hello~2 hello~3 #반환값이 있는 경우 >>> def plus(x,y): return x+y >>> z=plus(1,2) >>> z 3 >>> def minus(x,y): return(x-y,"음수사원 굴정지인") >>> type(minus) >>> (x,y)=minus(1,2) >>> x -1 >>> y '음수사원 굴정지인' >>> z=minus(1,2) >>> z (-1, '음수사원 굴..