목록파이썬 (7)
RieloUo
[Tip] pip install 에러(Fatal error in launcher: Unable to create process using ...) 아래와 같은 오류가 발생한다면? > pip upgrade를 해보자 명령어 : python.exe -m pip install --upgrade pip
CSV 파일읽고 2중 for문 출력 csv 파일 데이터는 다음과 같음 1.1.1.11.1.1.21.1.1.31.1.1.4....1.1.1.100 # -*- coding: utf-8 -*-import reimport osimport csv fields=[] # csv 데이터를 읽어서 fields 배열에 한줄씩 넣음with open('C:\\test.csv', 'r') as reader: for line in reader: fields.append(line.split()) for i in range(0, 100):for a in fields[i]:print i+1, fields[i]결과 화면1 1.1.1.12 1.1.1.23 1.1.1.34 1.1.1.45 1.1.1.5 ...100 1.1.1.100
print("a_%s,b_%s,c_%s,d_%s,e_%s,f_%s,g_%s" % (searchip,searchip,searchip,searchip,searchip,searchip,searchip))print("a_{0},b_{0},c_{0},d_{0},e_{0},f_{0},g_{0}" .format(searchip)) [출력 결과] a_1,b_1,c_1,d_1,e_1,f_1,g_1a_1,b_1,c_1,d_1,e_1,f_1,g_1 [참조 블로그] http://studymake.blogspot.kr/2015/05/python-format.html 포맷팅을 하는 두 가지 방법 모두 장단점이 있으므로 상황에 따라 편한 쪽을 택해서 사용하면 된다. 예를 들어서 동일한 변수를 여러 번 출력할 때는 여기에서 소개한 ..
today = datetime.now() #test용#today = today - timedelta(days = 1) #숫자가 빼려는 날짜 갯수임 today_str = today.strftime('%Y.%m.%d') #.strftime 양식 ex) 2017-06-03 07:48:23 # 년도 : (%y -> 17), (%Y -> 2017) # 월 : (%m -> 06) # 일 : (%d -> 03) # 시 : (%H -> 07) # 분 : (%M -> 48) # 초 : (%S -> 23) print today_str [출력 결과] 2017.06.03
처음에 'GeoIP'로 설치했었는데 import 에러가 해결이 안됨 -> Visual Studio Community 무료버전 설치하고... 엄청 삽질했었음 ㅠㅠ -> pygeoip가 훨씬 간단함 1. pygeoip 설치 1) pip가 환경변수에 등록되어 있으면 이 과정 필요X (but 나는 귀찮아서 환경변수 등록을 안해뒀음) pip.exe 가 있는 위치로 이동 cd C:\Python27\Scripts 2) 설치 명령어pip install pygeoip 3) GeoLiteCity DB 다운로드http://dev.maxmind.com/geoip/legacy/geolite/요기 들어가서 원하는 DB받으면 됨나는 GeoLite City -> Binary / gzip 으로 받았음압축은 당연히 풀어야함. 2. Py..
1. 파이썬 설치python .exe 위치 폴더를 환경변수(PATH)에 등록설치파일 다운 :https://www.python.org/downloads/release/python-2712/-> 내가 받은거 2. cx_oracle 설치윈도우 32bit or 64bit, 오라클 버전, 파이썬 버전을 고려해서 다운설치파일 다운 :(최신) : https://pypi.python.org/pypi/cx_Oracle/5.2.1 (과거) : https://sourceforge.net/projects/cx-oracle/files/ ->내가 받은거 : cx_Oracle-5.0.4-10g.win32-py2.7.msi 3. oracle클라이언트 설치(Instant client)다운받은거 압축 풀어서 오라클 폴더 안에 같이 넣어..