python 基础 列表 小例子
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 基础 列表 小例子相关的知识,希望对你有一定的参考价值。
-
存主机ip到列表
-
host_list=[] netip=‘192.168.1‘ for hostip in range(1,254): ip = netip +str(hostip) host_list.append(ip) hostlist
-
列表遍历
-
shoplist = [apple,mango] for index,value in enumerate(shoplist): print index,value 结果 0 apple 1 mango
以上是关于python 基础 列表 小例子的主要内容,如果未能解决你的问题,请参考以下文章