Skip to content

Instantly share code, notes, and snippets.

@jscoba
Created April 25, 2018 10:42
Show Gist options
  • Save jscoba/ed0a3c84ae2b3fc36b0e41ee99e0f599 to your computer and use it in GitHub Desktop.
Save jscoba/ed0a3c84ae2b3fc36b0e41ee99e0f599 to your computer and use it in GitHub Desktop.
Mimi fuera de la clase generator
# "Mimi, fuera de la clase, eres un estorbo para mi vista, eres un cuadro, ciao."
cadena = "{}, {} de la {}, eres un {} para mi {}, eres un {}, {}."
lista = ['Mimi', 'clase', 'fuera', 'estorbo', 'vista', 'cuadro', 'ciao']
import random
random.shuffle(lista)
print(cadena.format(*lista))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment