Skip to content

mariobustosjmz/crypthon

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

crypthon

Ejercicio de Criptografia usando el Cifrado Cesar con python

###Screens alt tag

alt tag alt tag alt tag

alt tag alt tag

Devuelve una lista con mayusculas, minuscula, numeros y un espacio

    def get_alfabeto():
      alfabeto = []

      # mayusculas:65-90 =25
      for i in range(65,91):
          alfabeto.append(chr(i))

      # minusculas:97-122 =25
      for i in range(97,123):
          alfabeto.append(chr(i))

      # numeros =10
      for i in range(10):
          alfabeto.append(str(i))

      # espacio
      alfabeto.append(" ")

      #print len(alfabeto) = 63 elementos
      return alfabeto
   

About

Criptografia -usando el Cifrado Cesar con python

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages