如何放一个"在变量python中

时间:2016-08-14 18:39:26

标签: python

我最近一直试图制作一个加密程序,而且我无法弄清楚如何在变量中放置双引号,在这种情况下是字母表'。目前我有我需要的每个角色,除了"和一个标签键,请记住我只是一个初学者和帮助将不胜感激。 - 谢谢!

while True:
    plaintext = input('Enter messege: ')
    alphabet = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz.,!?#@$%^&*()-_=+[]{}|\:;`~<>/ '" 
    key = not telling you what I am
    cipher = ''
    for c in plaintext:
       if c in alphabet:
            cipher += alphabet[(alphabet.index(c)+key)%(len(alphabet))]

    print ('your encrypted message is: ' + cipher)

1 个答案:

答案 0 :(得分:2)

您可以使用\"

样品:

print ("Hello \"")

输出:

Hello "