615 B
615 B
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])