decrypting a string

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Carlo Gambino
    New Member
    • Feb 2008
    • 12

    decrypting a string

    I am looking into learning the basics of cryptography and would like to use python to help me overcome this small challenge. I would like to create a program that takes a user input string and decrypts it.

    The encrpytion is super simple. The string
    Code:
    aaaaa
    would return
    Code:
    abcde
    I was thinking I could assign a value to each character and increment the value accordingly, but I was looking for a way to avoid doing this manually. Is there an easier way to accomplish such a thing?
Working...