python 사용자 정의 사전 인 스 턴 스 불 러 오기

다음 과 같다.

#    
def load_dict_from_file(filepath):
  _dict = {}
  try:
    with io.open(filepath, 'r',encoding='utf-8') as dict_file:
      for line in dict_file:
        (key, value) = line.strip().split(' ') #                  ,      
        _dict[key] = value
  except IOError as ioerr:
    print("   %s    " % (filepath))
  return _dict

#       
def stopwordslist(filepath):
  stopwords = {}
  fstop = io.open(filepath, 'r',encoding='utf-8')
  for line in fstop:
    stopwords[line.strip()]=line.strip()
  fstop.close()
  return stopwords
이 python 에 사용자 정의 사전 인 스 턴 스 를 불 러 오 는 것 은 작은 편집 이 여러분 에 게 공유 하 는 모든 내용 입 니 다.참고 하 시 기 를 바 랍 니 다.여러분 들 도 저 희 를 많이 사랑 해 주 셨 으 면 좋 겠 습 니 다.

좋은 웹페이지 즐겨찾기