python字典的小例子
(helloworld) [root@iZ2ze7qh7q0di3qkvef1dzZ ~]# more dic_test.py
#!/usr/bin/python
info ={}
name=raw_input("Please input name: ")
age=raw_input("Please input age: ")
gender=raw_input('please input(M/F): ')
info['name']=name
info['age']=age
info['gender']=gender
for k,v in info.items():
print "%s:%s" % (k,v)
print 'main end'
声明:本站所有文章资源内容,如无特殊说明或标注,均为采集网络资源。如若本站内容侵犯了原著者的合法权益,可联系本站删除。