print'Personal information, journal and more to come'
x = raw_input()
if x ==("personal information"):
print' Edward , Height: 5,10 , EYES: brown , STATE: IL TOWN: , SS:'
if x ==("journal"):
read = open('C:\\python\\foo.txt' , 'r')
name = read.readline()
print (name)
如何在不告诉我未定义某些内容的情况下循环或保持此代码运行?例如,如果我输入个人信息并获得我的个人信息,那么我想输入日记然后转到日记?