Skip to content

Instantly share code, notes, and snippets.

@Fhernd
Created January 15, 2018 16:41
Show Gist options
  • Save Fhernd/6299242743f400350f675d39ae256a5e to your computer and use it in GitHub Desktop.
Save Fhernd/6299242743f400350f675d39ae256a5e to your computer and use it in GitHub Desktop.
Estadísticas básicas sobre cadenas de caracters en Python.
escritor = 'Dostoevsky'
print (len(escritor))
print (min(escritor))
print (max(escritor))
print (escritor.count('o'))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment