Apuntes_Python/05_diez_proyectos/01-madlibs/README.md
2022-12-24 22:41:20 -03:00

30 lines
615 B
Markdown

# Notas del proyecto
## Concatenación de strings
```python
youtuber = "Kylie Ying"
texto = "suscribe to " + youtuber
texto = "suscribe to {}".format(youtuber)
texto = f"suscribe to {youtuber}"
```
## Entradas de texto
```python
entrada = input("Texto a mostrar al solicitar entrada ")
```
## String largo y formateado
```python
texto_largo = f"cadena de texto {variable}! \
escrita en multiples lineas usando \
backslash "{backslash}" como"
```
## Escoger aleatoriamente
```python
import random
lista_aleatoria = random.choice([lista_1, lista_2, lista_3])
```