簡體   English   中英

嘗試加密和寫入文件時Python中的UnicodeEncodeError

[英]UnicodeEncodeError in Python when trying to encrypt and write to a file

這里的第二篇文章(在相同的代碼上)。 然而這次是另一個問題。 它只是經常發生,但它讓我知道為什么。 這是輸出和錯誤:

Phrase to be encrypted: Hello world
Shift keyword, Word only: Hello

:-) :-) :-) Encrypting Phrase 10%... :-) :-) :-) 
:-) :-) :-) Encrypting Phrase 20%... :-) :-) :-) 
:-) :-) :-) Encrypting Phrase 30%... :-) :-) :-) 
:-) :-) :-) Encrypting Phrase 40%... :-) :-) :-) 
:-) :-) :-) Encrypting Phrase 50%... :-) :-) :-) 
:-) :-) :-) Encrypting Phrase 60%... :-) :-) :-) 
:-) :-) :-) Encrypting Phrase 70%... :-) :-) :-) 
:-) :-) :-) Encrypting Phrase 80%... :-) :-) :-) 
:-) :-) :-) Encrypting Phrase 90%... :-) :-) :-) 
:-) :-) :-) Encrypting Phrase 100%... :-) :-) :-) 
:-) :-) :-) Checking Security of encrypted phrase.... :-) :-) :-) 
:-) :-) :-) Done! :-) :-) :-) 

Here is your Encrypted Phrase:I?j!Qgea:~~[
Traceback (most recent call last):
  File "C:\Users\Isaac Scarisbrick\Downloads\Keyword Cipher_1.py", line 60, in <module>
    file.write (str(result) + " " + (Cipher))
  File "C:\Users\Isaac Scarisbrick\AppData\Local\Programs\Python\Python35-32\lib\encodings\cp1252.py", line 19, in encode
    return codecs.charmap_encode(input,self.errors,encoding_table)[0]
UnicodeEncodeError: 'charmap' codec can't encode characters in position 2-3: character maps to <undefined>

這是我的代碼:

import random

phrase = input('Phrase to be encrypted: ')
shift_key = input("Shift keyword, Word only: ")

Encryption_Base = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890,./;:<>?'@#~]}[{=+-_)(*&^%$£!`¬\|"
key_encryption = random.randint(0, 94)
Cipher = ''

for c in shift_key:
        if c in Encryption_Base:
            Cipher += Encryption_Base[(Encryption_Base.index(c)+key_encryption)%(len(Encryption_Base))]

def Keyword_Encryption(key, phrase):

    if len(phrase) > len(key):
        while len(phrase) > len(key):
            length_to_add = len(phrase) - len(key)
            key = key + key[0:length_to_add]

    elif len(phrase) < len(key):
        while len(phrase) < len(key):
            length_to_sub = len(key) - (len(key) - len(phrase))
            key = key[0:length_to_sub]

    else:
        pass

    shifted_phrase = ''
    for i in range(len(phrase)):
        new_letter = (ord(key[i]) - 96) + (ord(phrase[i]) - 96) + 96
        if new_letter > 1220:
            new_letter = chr(new_letter - 26)

        else:
            new_letter = chr(new_letter)

        shifted_phrase = shifted_phrase + new_letter
    return shifted_phrase

result = Keyword_Encryption(Cipher, phrase)
print (" ")
print (":-) " * 3 + "Encrypting Phrase 10%... " + ":-) " * 3)
print (":-) " * 3 + "Encrypting Phrase 20%... " + ":-) " * 3)
print (":-) " * 3 + "Encrypting Phrase 30%... " + ":-) " * 3)
print (":-) " * 3 + "Encrypting Phrase 40%... " + ":-) " * 3)
print (":-) " * 3 + "Encrypting Phrase 50%... " + ":-) " * 3)
print (":-) " * 3 + "Encrypting Phrase 60%... " + ":-) " * 3)
print (":-) " * 3 + "Encrypting Phrase 70%... " + ":-) " * 3)
print (":-) " * 3 + "Encrypting Phrase 80%... " + ":-) " * 3)
print (":-) " * 3 + "Encrypting Phrase 90%... " + ":-) " * 3)
print (":-) " * 3 + "Encrypting Phrase 100%... " + ":-) " * 3)
print (":-) " * 3 + "Checking Security of encrypted phrase.... " + ":-) " * 3)
print (":-) " * 3 + "Done! " + ":-) " * 3)
print (" ")
print ('Here is your Encrypted Phrase:' + (result) + (Cipher))

file = open("Encrypted.txt", "w")
file.write (str(result) + " " + (Cipher))
file.close()

非常感謝您提前,因為這是我在A級課程中設置的任務的一個小擴展。 這里有一些代碼片段你可能已經看過,因為在python中有一個加密程序,我從中獲取了一些代碼。 感謝您的時間 :)。

編輯:如果這有助於它有時也會拋出此錯誤:

Phrase to be encrypted: Hello World
Shift keyword, Word only: Hello
Traceback (most recent call last):
  File "C:\Users\Isaac Scarisbrick\Downloads\Keyword Cipher_1.py", line 42, in <module>
    result = Keyword_Encryption(Cipher, phrase)
  File "C:\Users\Isaac Scarisbrick\Downloads\Keyword Cipher_1.py", line 37, in Keyword_Encryption
    new_letter = chr(new_letter)
ValueError: chr() arg not in range(0x110000)

好的。 所以看過這篇文章的其他人都知道。 所有你需要做的就是放

import codecs

在頂部,然后在您編寫文件類型時

encoding = "utf8"

在寫括號內。 希望我幫助你解決問題,並感謝所有幫助我得出這個結論的人:-)。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM