Apuntes_Python/05_diez_proyectos/01-madlibs
2022-12-24 22:41:20 -03:00
..
sample_madlibs init Apuntes Python 2022-12-24 22:41:20 -03:00
madlibs.py init Apuntes Python 2022-12-24 22:41:20 -03:00
random_madlibs.py init Apuntes Python 2022-12-24 22:41:20 -03:00
README.md init Apuntes Python 2022-12-24 22:41:20 -03:00

Notas del proyecto

Concatenación de strings

youtuber = "Kylie Ying"
texto = "suscribe to " + youtuber
texto = "suscribe to {}".format(youtuber)
texto = f"suscribe to {youtuber}"

Entradas de texto

entrada = input("Texto a mostrar al solicitar entrada ")

String largo y formateado

texto_largo = f"cadena de texto {variable}! \
                escrita en multiples lineas usando \
                backslash "{backslash}" como"

Escoger aleatoriamente

import random

lista_aleatoria = random.choice([lista_1, lista_2, lista_3])