Este enunciado fue analizado por especialistas así aseguramos la veracidad de nuestra esta noticia.
Ejemplo 1: generador de palabras aleatorias python
#First pip install random-wordfrom random_word import RandomWords
r = RandomWords()# Return a single random word
r.get_random_word()# Return list of Random words
r.get_random_words()# Return Word of the day
r.word_of_the_day()
Ejemplo 2: generador de palabras aleatorias django
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("nnPress the enter key to exit")
Reseñas y puntuaciones
Si te gusta la informática, eres capaz de dejar un tutorial acerca de qué le añadirías a este ensayo.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)