Python 列表(List) 的三种遍历(序号和值)方法
摘要:
#!/usr/bin/env python# -*- coding: utf-8 -*-if __name__ == '__main__': list = ['html', 'js', 'css', 'python'] # 方法1 print '遍历列表方法1:' for i in list: pr 阅读全文
posted @ 2018-05-15 15:37 风-fmgao 阅读(1835) 评论(0) 推荐(0) 编辑