私は自分のコードに多くの苦労をしています。今私の先生は私がこれから機能を作ってほしいと思っています。私は本当に試していますが、私はそれを理解できません。 だから、私はこれから関数を作り、それをもう一度呼び出す必要があります。誰かが私を助けたり、私にいくつかのヒントを与えてくださいすることができます:) :)Python、関数を作成する
opengraph = False
while opengraph is not True:
if len(sys.argv) == 2:
name = sys.argv[1]
g = openmap(name)
opengraph = True
else:
try:
name = raw_input('Please enter a file: ')
g = openmap(name)
opengraph = True
except:
print 'Not able to read the file you wrote, try another time.'
origdest = raw_input('Enter origin and destination (quit to exit): ')
チュートリアルの「機能」セクションをお読みください。 –