30 lines
615 B
Markdown
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])
|
||
|
```
|
||
|
|