関数から返される文字列を作成しています。いくつかの値をリストするには文字列が必要です。
最後に結合して完全な文字列を作成するリストを作成しました。リストが追加される while ループの反復ごとに新しい行を追加しようとしています。
while shiftAmount < 25: #Iterates through all 26 combinations producing a processed value each time.
shiftAndStore(shiftAmount)
shiftAmount = shiftAmount + 1
stringshift = str(shiftAmount)
outputCipherText.append("The Encoded / Decoded text on shift " + str((shiftAmount - 1)) + " is ")
outputCipherText.append(str(''.join(completePlainText)) + " \n")
completePlainText = []
output = [''.join(outputCipherText)]
これが機能しない理由を誰かに教えてもらえますか? 出力を見ると \n が表示されますが、実行されず、改行されません。