python字典的小例子
(helloworld) [root@iZ2ze7qh6q0di3qkvef1dzZ ~]# 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'
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/20893244/viewspace-2220461/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 【python小例子】小例子拾憶Python
- python閉包小例子Python
- Python中使用字典的幾個小技巧Python
- jQuery的常用小例子jQuery
- 十幾個python小例子,從此愛上pythonPython
- Python中的字典Python
- Python:字典的使用Python
- Python字典的操作Python
- 一個jquery的小例子jQuery
- mybatis小例子2MyBatis
- websocket使用小例子Web
- java反射小例子Java反射
- Python中字典的操作Python
- Python字典的特性分析Python
- 【Python】字典的setdefault()方法Python
- python進階(24)Python字典的底層原理以及字典效率Python
- PHP中ZendCache用法的小例子PHP
- 【字典序第k小】
- python-字典-如何取出字典中的所有值Python
- 什麼是字典?Python字典是可變的嗎?Python
- python-字典Python
- Python dict(字典)Python
- Python羅技字典Python
- python 字典排序Python排序
- python建立字典Python
- 小例子理解多型多型
- 【丁原 】優化小例子優化
- Python的元組()與字典{}Python
- Python的元組()與字典 { }Python
- Python字典遍歷的陷阱Python
- python中的集合與字典Python
- python中的字典學習Python
- Python中的列表、元祖、字典Python
- Python字典的高階用法Python
- python3 字典的使用Python
- react-refetch的使用小例子React
- 一個小例子搞懂redux的套路Redux
- python字典鍵的特性及字典內建函式&方法Python函式