非常简单的字典查询程序

#Age query program

d = {'schmidt':22,'michael':26,'zoe':21}
while 1:
	a = raw_input('enter your name(lowercase):')
	print 'your age is:',d.get(a)


你可能感兴趣的:(python)