摘要:
通过索引操作列表:n = [1, 3, 5]# Add your code belows = n[1]print s这里n中有三个元素,索引是从0开始计算。实例中的1代表的从0开始。通过索引操作列表:n = [1, 3, 5]# Do your multiplication hereprint nn[1] = n[1] * 5print n-----------------------------------------------另外一种写法。n = [1, 3, 5]# Do your multiplication hereprint nn[1] *= 5print n给列表增加一个元素 阅读全文