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
其中一个时,打印结果并且我没有收到任何错误。