Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- !/usr/bin/env python
- # -*- coding: utf-8 -*-
- #
- """
- Tipo especial (yo lo llamo así): str
- EL TIPO STR ES UN TIPO DE DATO BASICO PERO TAMBIEN ES UNA COLECCION
- str es una coleccion ORDENADA e INMUTABLE
- frase= "Las mariposas son bellas"
- print(f"Cantidad de caracteres de la frase '{frase}': {len(frase)}")
- print(f"Inicial: {frase[0]}")
- # frase[0] = "l" # da error, es INMUTABLE
- """
- # Script que imprime una lista en forma vertical
- lista = ["Juan", "Pepe", "Ana", "Sofia"]
- i = 0
- while i < len(lista):
- print(lista[i])
- i = i +1
- # Spoiler del for
- for nombre in lista:
- print(nombre)
Advertisement
Add Comment
Please, Sign In to add comment