목록STUDYING/PYTHON (9)
MY MEMO
+)Django 1.11.0 사용 -> python version (https://docs.djangoproject.com/ko/2.0/faq/install/)Django 1.11.0의 경우 python 2.7, 3.4, 3.5, 3.6 사용 +) Django란?python으로 만들어진 무료 오픈소스 웹 어플리케이션 프레임워크 환경 설치 (Django1.11.0) - MAC OS 0. python3.6.4 install (https://www.python.org/downloads/) 1. 가상 환경을 생성할 폴더 이름 (folder_name 폴더 생성 및 폴더 이동) - 건너 뛰어도 괜찮음mkdir 폴더_이름cd 폴더_이름 2. 가상 환경 생성python3 -m venv 가상환경_이름 3. 가상 환경 실..
1) Rivescript에서 한글을 사용하려면 python 2.x버전이 아닌 python 3.x버전을 사용해야한다 코드)#!/usr/bin/python3 # Python 3 example from rivescript import RiveScript import re rs = RiveScript(utf8=True) rs.unicode_punctuation = re.compile(r'[.,!?;:]') rs.load_directory("./eg/brain") rs.sort_replies() print("""This is a bare minimal example for how to write your own RiveScript bot! For a more full-fledged example, try runn..
나는 환경변수를 설정하지 않아서 생겨난 오류였다. 1) 해결 방법 Path에 python이 설치된 경로 와 python이 설치된 경로.python실행파일 이름PYTHONPATH에 python이 설치된경로.python실행파일 이름 python이 설치된 경로 : C:\Python36-32python이 설치된 경로.python실행파일 이름 : C:\Python36-32\python.exe
출처 : https://www.rivescript.com/docs/tutorial .rive 파일 + : trigger -> match the user's message+) trigger is always lower cased "Hello Bot", "HELLO BOT", or "hello bot" and it will match the trigger all the same. - : command is how you define a reponse to a triggerif you writing the many - command, rivescript will randomly choose the answer Say something Random + say something random- This {rando..
1) pycharm에서 한글 쓰기#coding:utf-8 추가
출처 : https://programmers.co.kr/learn/courses/2 함수를 정의하고 list에서 맞는 value값이 있으면 return 해주는 문제! def safe_index(my_list, value): if value in my_list: index = my_list.index(value); return index else : return None safe_index([1,2,3,4,5], 5)safe_index([1,2,3], 5) list의 insert sort reverse 연습문제 list1 = [1, 2, 3, 4] # 아래줄에서 list1의 1번째 자리에 8을 넣고 원래 있던 값은 오른쪽으로 밀어 보세요.list1.insert(1,8) # 아래줄에서 list1을 작은수 부..
출처 : https://programmers.co.kr/learn/courses/2 출력name = "jae yeon lee" color = "blue" print('안녕하세요. 제 이름은 {}이고 좋아하는 색상은 {}입니다.'.format(name,color )) 형변환 a=23 b=5 div=int(a/b) list rainbow=['빨강','주황','노랑','초록','파랑','남색','보라'] last_color = rainbow[len(rainbow)-1] print('무지개의 마지막 색은 {}이다'.format(last_color) ) list1=[1,2,3] list1.append(4) list1=[1,2,3] list2=[4,5,6] list3 = list1+list2 numbers = [1..
출처 : https://docs.djangoproject.com/ko/1.11/intro/tutorial01/ 1. 일단 Django를 설치한다 (python를 미리 설치했다고 가정) pip install Django 2. 이후 python에서 mysql을 사용할 수 있도록 한다 pip install pymysql Django project를 생성한다 1) 자신이 project를 만들고 싶은 파일의 위치로 간다 (예 - cd c:\PythonProject)2) django-admin startproject project이름 +)mysite/ 디렉토리 바깥의 디렉토리는 단순히 프로젝트를 담는 공간입니다. 이 이름은 Django 와 아무 상관이 없으니, 원하는 이름으로 변경하셔도 됩니다.manage.py: ..
1. Window Konlpy는 한국어 자연어 처리를 하기 위한 것이다!!!!!!!(완전 짱) http://konlpy.readthedocs.io/en/v0.4.4/ 이 페이지로 가면 http://konlpy.readthedocs.io/en/v0.4.4/#guide user guide로 갈 수있다 이곳에 window 설치 방법이 있다 일단 jdk 1.7이상의 버전을 설치하고 JAVA_HOME에 환경변수를 등록해줘야한다. 나는 jdk 1.8버전이 있었기 때문에 넘어갔다. 이후 설치시 주의할 점은 1. python의 버전 2. 컴퓨터 64bit / 32bit 그리고 whl파일을 다운 받는다 (http://www.lfd.uci.edu/~gohlke/pythonlibs/#jpype) -> cp27 python2..