https://webnautes.tistory.com/454
원래 set을 사용하면, 중복없게 할 수 있으나, 순서가 유지되지 않는다는 단점이 있다. 순서를 유지하고 싶으면서, iterable한 자료형에서 중복제거를 하고 싶다면 from collections import OrderedDictlist2 = ['1','2','3','4','5']print( list(OrderedDict.fromkeys(list2)) )출처:https://pwnbit.kr/87
https://wikidocs.net/21952 pyinstaller -w -F grid_layout.py
jupyter nbconvert --to script [YOUR_NOTEBOOK].ipynb
import nltk import ssl try: _create_unverified_https_context = ssl._create_unverified_context except AttributeError: pass else: ssl._create_default_https_context = _create_unverified_https_context nltk.download()해결.
python3 -m pip install --upgrade https://storage.googleapis.com/tensorflow/mac/cpu/tensorflow-0.12.0-py3-none-any.whl
파이썬 쌩기초https://wikidocs.net/book/1637 기본 딥러닝https://wikidocs.net/22892 입문https://www.lucypark.kr/courses/2015-dm/text-mining.html 머신러닝https://wikidocs.net/book/2383