私のelse if文が以下のコード内で機能していない場合は、私の端末を使ってPythonのこのビットを実行していて、4,5を入力するとプログラムは終了し、プロンプト。私は間違って何をしていますか?else if文が機能しない場合のPython
#!/usr/bin/env python
import webbrowser
print '\033[0;37;40m' + "Title: The interlinked bit (the index)"
print "Heading: Links!"
print "Paragraph Some Interesting stuff can be found here"
print "Paragraph: And some other bits are also available"
print "1: ./page4.html"
print "2: /page5.html"
pageNumber = raw_input("Enter 4 or 5: ")
if pageNumber == 4:
print "A Page of stuff";
print "Actually this is all rather dull, why don't you look here instead, or alternatively go back to the index";
elif pageNumber == 5:
print "Another page of stuff"
print "Nothing very much here, you should probably try here instead, or perhaps go back to the index"
ありがとうございます!
raw_input' 'から返される型は、' 'str' – EdChum
int'これはjava' – EdChum
がなぜ持っている'ではない、あなたの質問に無関係な言語タグを追加しないでくださいされていないため、この質問は献身的でしたか? –