본문 바로가기
파이썬

파이썬 임의 단어 생성기-Python

by º기록 2021. 1. 6.
반응형

그래서 저는 기본적으로 컴퓨터가 단어 목록에서 단어를 가져 와서 사용자를 위해 뒤섞는 프로젝트를 진행하고 있습니다. 한 가지 문제가 있습니다. 목록에 많은 단어를 계속 작성하고 싶지 않기 때문에 임의의 단어를 가져 오는 방법이 있는지 궁금합니다. 그럼 나도 게임을 즐길 수 있을까요? 이것은 전체 프로그램의 코딩이며 내가 입력 한 6 개의 단어 만 있습니다.

import random

WORDS = ("python", "jumble", "easy", "difficult", "answer",  "xylophone")
word = random.choice(WORDS)
correct = word
jumble = ""
while word:
    position = random.randrange(len(word))
    jumble += word[position]
    word = word[:position] + word[(position + 1):]
print(
"""
      Welcome to WORD JUMBLE!!!

      Unscramble the leters to make a word.
      (press the enter key at prompt to quit)
      """
      )
print("The jumble is:", jumble)
guess = input("Your guess: ")
while guess != correct and guess != "":
    print("Sorry, that's not it")
    guess = input("Your guess: ")
if guess == correct:
    print("That's it, you guessed it!\n")
print("Thanks for playing")

input("\n\nPress the enter key to exit")

 

해결 방법

 

이 작업을 반복적으로 수행하는 경우 로컬에서 다운로드하고 로컬 파일에서 가져옵니다. * nix 사용자는 / usr / share / dict / words 를 사용할 수 있습니다.

예:

word_file = "/usr/share/dict/words"
WORDS = open(word_file).read().splitlines()

원격 사전에서 가져 오려면 몇 가지 방법이 있습니다. 요청 라이브러리를 사용하면이 작업을 매우 쉽게 수행 할 수 있습니다 ( pip 설치 요청 필요).

import requests

word_site = "http://svnweb.freebsd.org/csrg/share/dict/words?view=co&content-type=text/plain"

response = requests.get(word_site)
WORDS = response.content.splitlines()

또는 내장 된 urllib2를 사용할 수 있습니다.

import urllib2

word_site = "http://svnweb.freebsd.org/csrg/share/dict/words?view=co&content-type=text/plain"

response = urllib2.urlopen(word_site)
txt = response.read()
WORDS = txt.splitlines()

 

참조 페이지 https://stackoverflow.com/questions/18834636

 

 

반응형

댓글