Implementing the Ceaser Cipher function through input in Python












-1















Im trying to create a Ceaser Cipher function in Python that shifts letters based off the input you put in.



plainText = input("Secret message: ")
shift = int(input("Shift: "))

def caesar(plainText, shift):
cipherText = ""
for ch in plainText:
if ch.isalpha():
stayInAlphabet = ord(ch) + shift
if stayInAlphabet > ord('z'):
stayInAlphabet -= 26
finalLetter = chr(stayInAlphabet)
cipherText += finalLetter
print(cipherText)
return cipherText

caesar(plainText, shift)


For example, if I put "THE IDES OF MARCH" as my message and put 1 as my shift, it outputs "UIFJEFTPGNBSDI" when it is meant to output "UIF JEFT PG NBSDI." It doesn't keep the spaces and also shifts things like exclamation marks back also when it should leave them as is. Letters should also wrap meaning if I put shift as 3, an X should go back to A.










share|improve this question



























    -1















    Im trying to create a Ceaser Cipher function in Python that shifts letters based off the input you put in.



    plainText = input("Secret message: ")
    shift = int(input("Shift: "))

    def caesar(plainText, shift):
    cipherText = ""
    for ch in plainText:
    if ch.isalpha():
    stayInAlphabet = ord(ch) + shift
    if stayInAlphabet > ord('z'):
    stayInAlphabet -= 26
    finalLetter = chr(stayInAlphabet)
    cipherText += finalLetter
    print(cipherText)
    return cipherText

    caesar(plainText, shift)


    For example, if I put "THE IDES OF MARCH" as my message and put 1 as my shift, it outputs "UIFJEFTPGNBSDI" when it is meant to output "UIF JEFT PG NBSDI." It doesn't keep the spaces and also shifts things like exclamation marks back also when it should leave them as is. Letters should also wrap meaning if I put shift as 3, an X should go back to A.










    share|improve this question

























      -1












      -1








      -1


      1






      Im trying to create a Ceaser Cipher function in Python that shifts letters based off the input you put in.



      plainText = input("Secret message: ")
      shift = int(input("Shift: "))

      def caesar(plainText, shift):
      cipherText = ""
      for ch in plainText:
      if ch.isalpha():
      stayInAlphabet = ord(ch) + shift
      if stayInAlphabet > ord('z'):
      stayInAlphabet -= 26
      finalLetter = chr(stayInAlphabet)
      cipherText += finalLetter
      print(cipherText)
      return cipherText

      caesar(plainText, shift)


      For example, if I put "THE IDES OF MARCH" as my message and put 1 as my shift, it outputs "UIFJEFTPGNBSDI" when it is meant to output "UIF JEFT PG NBSDI." It doesn't keep the spaces and also shifts things like exclamation marks back also when it should leave them as is. Letters should also wrap meaning if I put shift as 3, an X should go back to A.










      share|improve this question














      Im trying to create a Ceaser Cipher function in Python that shifts letters based off the input you put in.



      plainText = input("Secret message: ")
      shift = int(input("Shift: "))

      def caesar(plainText, shift):
      cipherText = ""
      for ch in plainText:
      if ch.isalpha():
      stayInAlphabet = ord(ch) + shift
      if stayInAlphabet > ord('z'):
      stayInAlphabet -= 26
      finalLetter = chr(stayInAlphabet)
      cipherText += finalLetter
      print(cipherText)
      return cipherText

      caesar(plainText, shift)


      For example, if I put "THE IDES OF MARCH" as my message and put 1 as my shift, it outputs "UIFJEFTPGNBSDI" when it is meant to output "UIF JEFT PG NBSDI." It doesn't keep the spaces and also shifts things like exclamation marks back also when it should leave them as is. Letters should also wrap meaning if I put shift as 3, an X should go back to A.







      python






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Nov 25 '18 at 22:08









      JosephJoseph

      32




      32
























          2 Answers
          2






          active

          oldest

          votes


















          0














          To fix the spacing issue, you can add an else to if ch.isalpha() and just append the plain text character to the cipher text. This will also handle punctuation and other special, non-alpha characters.



          To handle wrapping (e.g. X to A), you'll want to use the modulo operator %. Because A is the 65th ASCII character and not the 0th, you'll need to zero-base the alpha characters, then apply the mod, then add back the offset of 'A'. To shift with wrap-around, you can do something like: final_letter = chr((ord(ch) + shift - ord('A')) % 26 + ord('A')). Note the 26 comes from number of letters in the Latin alphabet.



          With these in mind, here is a full example:



          plain_text = input("Secret message: ")
          shift = int(input("Shift: "))

          def caesar(plain_text, shift):
          cipher_text = ""
          for ch in plain_text:
          if ch.isalpha():
          final_letter = chr((ord(ch) + shift - ord('A')) % 26 + ord('A'))
          cipher_text += final_letter
          else:
          cipher_text += ch
          print(cipher_text)
          return cipher_text

          caesar(plain_text, shift)


          Sample input:



          plain_text = "THE IDES OF MARCH"
          shift = 1

          cipher_text = caesar(plain_text, shift)
          print(cipher_text)
          # UIF JEFT PG NBSDI





          share|improve this answer































            0














            The reason the cipher does not produce the expected result is your code does not account for the case where it is not a alpha non numerical letter. So, a potential fix is just adding handling for spaces.



            Code



            plainText = input("Secret message: ")
            shift = int(input("Shift: "))


            def caesar(plainText, shift):
            cipherText = ""
            for ch in plainText:
            if ch.isalpha():
            stayInAlphabet = ord(ch) + shift
            if stayInAlphabet > ord('z'):
            stayInAlphabet -= 26
            finalLetter = chr(stayInAlphabet)
            cipherText += finalLetter
            elif ch is " ":
            cipherText += " "
            print(cipherText)
            return cipherText


            caesar(plainText, shift)


            Example



            Secret message: THE IDES OF MARCH
            Shift: 1
            UIF JEFT PG NBSDI





            share|improve this answer























              Your Answer






              StackExchange.ifUsing("editor", function () {
              StackExchange.using("externalEditor", function () {
              StackExchange.using("snippets", function () {
              StackExchange.snippets.init();
              });
              });
              }, "code-snippets");

              StackExchange.ready(function() {
              var channelOptions = {
              tags: "".split(" "),
              id: "1"
              };
              initTagRenderer("".split(" "), "".split(" "), channelOptions);

              StackExchange.using("externalEditor", function() {
              // Have to fire editor after snippets, if snippets enabled
              if (StackExchange.settings.snippets.snippetsEnabled) {
              StackExchange.using("snippets", function() {
              createEditor();
              });
              }
              else {
              createEditor();
              }
              });

              function createEditor() {
              StackExchange.prepareEditor({
              heartbeatType: 'answer',
              autoActivateHeartbeat: false,
              convertImagesToLinks: true,
              noModals: true,
              showLowRepImageUploadWarning: true,
              reputationToPostImages: 10,
              bindNavPrevention: true,
              postfix: "",
              imageUploader: {
              brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
              contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
              allowUrls: true
              },
              onDemand: true,
              discardSelector: ".discard-answer"
              ,immediatelyShowMarkdownHelp:true
              });


              }
              });














              draft saved

              draft discarded


















              StackExchange.ready(
              function () {
              StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53472494%2fimplementing-the-ceaser-cipher-function-through-input-in-python%23new-answer', 'question_page');
              }
              );

              Post as a guest















              Required, but never shown

























              2 Answers
              2






              active

              oldest

              votes








              2 Answers
              2






              active

              oldest

              votes









              active

              oldest

              votes






              active

              oldest

              votes









              0














              To fix the spacing issue, you can add an else to if ch.isalpha() and just append the plain text character to the cipher text. This will also handle punctuation and other special, non-alpha characters.



              To handle wrapping (e.g. X to A), you'll want to use the modulo operator %. Because A is the 65th ASCII character and not the 0th, you'll need to zero-base the alpha characters, then apply the mod, then add back the offset of 'A'. To shift with wrap-around, you can do something like: final_letter = chr((ord(ch) + shift - ord('A')) % 26 + ord('A')). Note the 26 comes from number of letters in the Latin alphabet.



              With these in mind, here is a full example:



              plain_text = input("Secret message: ")
              shift = int(input("Shift: "))

              def caesar(plain_text, shift):
              cipher_text = ""
              for ch in plain_text:
              if ch.isalpha():
              final_letter = chr((ord(ch) + shift - ord('A')) % 26 + ord('A'))
              cipher_text += final_letter
              else:
              cipher_text += ch
              print(cipher_text)
              return cipher_text

              caesar(plain_text, shift)


              Sample input:



              plain_text = "THE IDES OF MARCH"
              shift = 1

              cipher_text = caesar(plain_text, shift)
              print(cipher_text)
              # UIF JEFT PG NBSDI





              share|improve this answer




























                0














                To fix the spacing issue, you can add an else to if ch.isalpha() and just append the plain text character to the cipher text. This will also handle punctuation and other special, non-alpha characters.



                To handle wrapping (e.g. X to A), you'll want to use the modulo operator %. Because A is the 65th ASCII character and not the 0th, you'll need to zero-base the alpha characters, then apply the mod, then add back the offset of 'A'. To shift with wrap-around, you can do something like: final_letter = chr((ord(ch) + shift - ord('A')) % 26 + ord('A')). Note the 26 comes from number of letters in the Latin alphabet.



                With these in mind, here is a full example:



                plain_text = input("Secret message: ")
                shift = int(input("Shift: "))

                def caesar(plain_text, shift):
                cipher_text = ""
                for ch in plain_text:
                if ch.isalpha():
                final_letter = chr((ord(ch) + shift - ord('A')) % 26 + ord('A'))
                cipher_text += final_letter
                else:
                cipher_text += ch
                print(cipher_text)
                return cipher_text

                caesar(plain_text, shift)


                Sample input:



                plain_text = "THE IDES OF MARCH"
                shift = 1

                cipher_text = caesar(plain_text, shift)
                print(cipher_text)
                # UIF JEFT PG NBSDI





                share|improve this answer


























                  0












                  0








                  0







                  To fix the spacing issue, you can add an else to if ch.isalpha() and just append the plain text character to the cipher text. This will also handle punctuation and other special, non-alpha characters.



                  To handle wrapping (e.g. X to A), you'll want to use the modulo operator %. Because A is the 65th ASCII character and not the 0th, you'll need to zero-base the alpha characters, then apply the mod, then add back the offset of 'A'. To shift with wrap-around, you can do something like: final_letter = chr((ord(ch) + shift - ord('A')) % 26 + ord('A')). Note the 26 comes from number of letters in the Latin alphabet.



                  With these in mind, here is a full example:



                  plain_text = input("Secret message: ")
                  shift = int(input("Shift: "))

                  def caesar(plain_text, shift):
                  cipher_text = ""
                  for ch in plain_text:
                  if ch.isalpha():
                  final_letter = chr((ord(ch) + shift - ord('A')) % 26 + ord('A'))
                  cipher_text += final_letter
                  else:
                  cipher_text += ch
                  print(cipher_text)
                  return cipher_text

                  caesar(plain_text, shift)


                  Sample input:



                  plain_text = "THE IDES OF MARCH"
                  shift = 1

                  cipher_text = caesar(plain_text, shift)
                  print(cipher_text)
                  # UIF JEFT PG NBSDI





                  share|improve this answer













                  To fix the spacing issue, you can add an else to if ch.isalpha() and just append the plain text character to the cipher text. This will also handle punctuation and other special, non-alpha characters.



                  To handle wrapping (e.g. X to A), you'll want to use the modulo operator %. Because A is the 65th ASCII character and not the 0th, you'll need to zero-base the alpha characters, then apply the mod, then add back the offset of 'A'. To shift with wrap-around, you can do something like: final_letter = chr((ord(ch) + shift - ord('A')) % 26 + ord('A')). Note the 26 comes from number of letters in the Latin alphabet.



                  With these in mind, here is a full example:



                  plain_text = input("Secret message: ")
                  shift = int(input("Shift: "))

                  def caesar(plain_text, shift):
                  cipher_text = ""
                  for ch in plain_text:
                  if ch.isalpha():
                  final_letter = chr((ord(ch) + shift - ord('A')) % 26 + ord('A'))
                  cipher_text += final_letter
                  else:
                  cipher_text += ch
                  print(cipher_text)
                  return cipher_text

                  caesar(plain_text, shift)


                  Sample input:



                  plain_text = "THE IDES OF MARCH"
                  shift = 1

                  cipher_text = caesar(plain_text, shift)
                  print(cipher_text)
                  # UIF JEFT PG NBSDI






                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered Nov 25 '18 at 22:22









                  Henry WoodyHenry Woody

                  4,80031127




                  4,80031127

























                      0














                      The reason the cipher does not produce the expected result is your code does not account for the case where it is not a alpha non numerical letter. So, a potential fix is just adding handling for spaces.



                      Code



                      plainText = input("Secret message: ")
                      shift = int(input("Shift: "))


                      def caesar(plainText, shift):
                      cipherText = ""
                      for ch in plainText:
                      if ch.isalpha():
                      stayInAlphabet = ord(ch) + shift
                      if stayInAlphabet > ord('z'):
                      stayInAlphabet -= 26
                      finalLetter = chr(stayInAlphabet)
                      cipherText += finalLetter
                      elif ch is " ":
                      cipherText += " "
                      print(cipherText)
                      return cipherText


                      caesar(plainText, shift)


                      Example



                      Secret message: THE IDES OF MARCH
                      Shift: 1
                      UIF JEFT PG NBSDI





                      share|improve this answer




























                        0














                        The reason the cipher does not produce the expected result is your code does not account for the case where it is not a alpha non numerical letter. So, a potential fix is just adding handling for spaces.



                        Code



                        plainText = input("Secret message: ")
                        shift = int(input("Shift: "))


                        def caesar(plainText, shift):
                        cipherText = ""
                        for ch in plainText:
                        if ch.isalpha():
                        stayInAlphabet = ord(ch) + shift
                        if stayInAlphabet > ord('z'):
                        stayInAlphabet -= 26
                        finalLetter = chr(stayInAlphabet)
                        cipherText += finalLetter
                        elif ch is " ":
                        cipherText += " "
                        print(cipherText)
                        return cipherText


                        caesar(plainText, shift)


                        Example



                        Secret message: THE IDES OF MARCH
                        Shift: 1
                        UIF JEFT PG NBSDI





                        share|improve this answer


























                          0












                          0








                          0







                          The reason the cipher does not produce the expected result is your code does not account for the case where it is not a alpha non numerical letter. So, a potential fix is just adding handling for spaces.



                          Code



                          plainText = input("Secret message: ")
                          shift = int(input("Shift: "))


                          def caesar(plainText, shift):
                          cipherText = ""
                          for ch in plainText:
                          if ch.isalpha():
                          stayInAlphabet = ord(ch) + shift
                          if stayInAlphabet > ord('z'):
                          stayInAlphabet -= 26
                          finalLetter = chr(stayInAlphabet)
                          cipherText += finalLetter
                          elif ch is " ":
                          cipherText += " "
                          print(cipherText)
                          return cipherText


                          caesar(plainText, shift)


                          Example



                          Secret message: THE IDES OF MARCH
                          Shift: 1
                          UIF JEFT PG NBSDI





                          share|improve this answer













                          The reason the cipher does not produce the expected result is your code does not account for the case where it is not a alpha non numerical letter. So, a potential fix is just adding handling for spaces.



                          Code



                          plainText = input("Secret message: ")
                          shift = int(input("Shift: "))


                          def caesar(plainText, shift):
                          cipherText = ""
                          for ch in plainText:
                          if ch.isalpha():
                          stayInAlphabet = ord(ch) + shift
                          if stayInAlphabet > ord('z'):
                          stayInAlphabet -= 26
                          finalLetter = chr(stayInAlphabet)
                          cipherText += finalLetter
                          elif ch is " ":
                          cipherText += " "
                          print(cipherText)
                          return cipherText


                          caesar(plainText, shift)


                          Example



                          Secret message: THE IDES OF MARCH
                          Shift: 1
                          UIF JEFT PG NBSDI






                          share|improve this answer












                          share|improve this answer



                          share|improve this answer










                          answered Nov 25 '18 at 22:16









                          The PineappleThe Pineapple

                          408312




                          408312






























                              draft saved

                              draft discarded




















































                              Thanks for contributing an answer to Stack Overflow!


                              • Please be sure to answer the question. Provide details and share your research!

                              But avoid



                              • Asking for help, clarification, or responding to other answers.

                              • Making statements based on opinion; back them up with references or personal experience.


                              To learn more, see our tips on writing great answers.




                              draft saved


                              draft discarded














                              StackExchange.ready(
                              function () {
                              StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53472494%2fimplementing-the-ceaser-cipher-function-through-input-in-python%23new-answer', 'question_page');
                              }
                              );

                              Post as a guest















                              Required, but never shown





















































                              Required, but never shown














                              Required, but never shown












                              Required, but never shown







                              Required, but never shown

































                              Required, but never shown














                              Required, but never shown












                              Required, but never shown







                              Required, but never shown







                              Popular posts from this blog

                              Costa Masnaga

                              Fotorealismo

                              Sidney Franklin