これは私が持っているものです。私はファイルにプログラムを書き込もうとしています
"""
Author: Michael Wellman (wellmanm)
Title: pa10.py
Description: Deciphering a document using pennymath.
"""
def decode(inputfile,outputfile):
**inputfile = open("superDuperTopSecretStudyGuide.txt","rU").read()
outputfile = open("translatedguide.txt","w")**
count = 0
aList = []
for words in inputfile:
aList.append(words)
charCount = len(aList)
**outpufile.write(aList)**
while count<charCount:
print aList[count],
if (aList[count].isalpha()):
if (ord(aList[count])>90):
count = count + ord(aList[count])-95
else:
count = count + ord(aList[count])-63
else:
if (aList[count].isdigit()):
count = count + ord(aList[count])-46
else:
count = count + 6
**inputfile.close()
outputfile.close()**
TXTファイルは私の教授からです:P
太字の部分が最も重要であり、私は信じています。
どのような考えですか?
一般的なフィードバックを求めているのですか、修正したい問題がありますか?一般的なフィードバックが必要な場合は、[コードレビュー](http://codereview.stackexchange.com/)サイトがこのタイプの質問に適しています。 – Darthfett
あなたが聞いている唯一の疑問は、「どのような考えですか?」です。ここでは、回答者の大多数が「はい」と答えてくれると確信しています。しかし、実際の質問にこのプログラムのいくつかの側面がある場合は、それを尋ねてください。 –