print'Personal information, journal and more to come'
x = raw_input()
if x ==("Personal Information"): # wont print
print' Edward , Height: 5,10 , EYES: brown , STATE: IL TOWN: , SS:'
elif x ==("Journal"): # wont print
read = open('C:\\python\\foo.txt' , 'r')
name = read.readline()
print (name)
プログラムを起動して"Personal information, journal and more to come"
表示しますが、どちらPersonal information
かを入力journal neither
すると結果が出力され、エラーは発生しません。