Python 列表(List) 的三種遍歷(序號和值)方法

#!/usr/bin/env python # -*- coding: utf-8 -*- if __name__ == '__main__':     list = ['html', 'js', 'css', 'python']     # 方法1     print '遍歷列表方法1:'     for i in list:         print ("序號:%s   值:%s" % (l
相關文章
相關標籤/搜索