我正在尝试使用base64编码消息循环填充列表
for i in range(loop_count):
temp = raw_input("Enter string: ")
coded_string.append(temp)
它应该将输入存储到我调用的预定义列表中
coded_string[]
但是每当传递以下字符串时“dGhlcmUNCg ==”我都会收到以下错误。
loop_count = input("Enter the amount of strings you'll enter: ")
File "<string>", line 1
dGhlcmUNCg==
^
SyntaxError:解析时的意外EOF