자바스크립트가 비활성화 되어있습니다.
자바스크립트가 활성화 되어야 콘텐츠가 깨지지 않고 보이게 됩니다.
자바스크립트를 사용할수 있도록 옵션을 변경해 주세요.
- willbsoon

본문 바로가기

Python33

pandas DataFrame에 대한 정리 DataFrame에 대해 알아보자. Python - Pandas 튜토리얼 -데이터프레임 생성, 접근, 삭제, 수정 https://3months.tistory.com/292 csv로 만들기 https://buttercoconut.xyz/74/ 2020. 6. 19.
파이썬 타입 체크. if문으로 타입 체크!!! 타입을 체크하는 방법! type() 하는것도 맞는데 이걸 코드상에서 체크하고 넘어가기 위한 방법은??? 1. o 가 정확히 str인지 확인 type(o) is str 2. o가 str의 인스턴스이거나 subclass인지 확인(표준적인 방법) isinstance(o, str) 3. o가 str의 subclass인지 확인 issubclass(type(o), str) type(o) in ([str] + str.__subclasses__()) 4. unicode 스트링도 포함할 경우 unicode string은 str의 usbclass가 아니기 때문에 이 경우도 포함해야 할 경우는 isinstance(o, basestring) # str과 unicode 모두 basestring의 subclass임을 이용 or .. 2020. 6. 19.
python Oracle DB 연결 python 에서 oracle db를 연결하는 방법 다른 db같은 경우에는 연결해주는 패키지만 설치하면 끝나는 경우가 많다. 그런데? 이 오라클 디비는 패키지만 설치해준다고 끝나질 않는다.. ㅠ 더 설치해줘야하는 유틸이 있어서 포스팅을 해보자. 오라클에 접속하기 위해서 필요한 패키지가 cx_Oracle 이라는 패키지인데. 이 패키지만 설치한다고 해결되지 않는다. 더 자세한 Document를 보고싶다면 해당 사이트에 접속하자. cx-oracle.readthedocs.io/en/latest/user_guide/installation.html#quick-start-cx-oracle-installation cx_Oracle 7 Installation — cx_Oracle 7.3.0 documentation © .. 2020. 6. 12.
오늘의 삽질.. 리눅스 아나콘다 가상환경.. 오늘도 거하게 삽질 하였다. 리눅스에서 가상환경을 실행하려고 하였는데 conda activate 가 안되네???? 쉘에서 실행하면 안된다. CommandNotFoundError: Your shell has not been properly configured to use 'conda activate'. To initialize your shell, run $ conda init 이런 에러가 뜬다. 근데 이게 또 신기한게 터미널에서 실행하면 된다..... 아 빡침.... 잘 되는게 왜 안될까.... 그래서 구글링 신나게 했다. 그랬더니 리눅스에서는 source activate라고 한다.... 분명 윈도우에서는 잘됬었는데..ㅠ.ㅠ 와,,,,,,,,,,,,,,,,,,,,,,,,,,,,, source activa.. 2020. 6. 11.
SyntaxError: Non-ASCII character 파이썬 에러 File "/home/ubuntu/py_project/KoGPT2_gen_lyric/KorQuAD_test/src/socket_bert.py", line 10 SyntaxError: Non-ASCII character '\xec' in file /home/ubuntu/py_project/KoGPT2_gen_lyric/KorQuAD_test/src/socket_bert.py on line 10, but no encoding declared; see http://python.org/dev/peps/pep-0263/ for details 아래 url을 보자 sh 파일로 실행을 시키고자 한다면 상단에 # -*- coding:utf-8 -*- # -*- coding: utf-8 -*- from __future__.. 2020. 6. 9.