WEB开发网
开发学院软件开发Python 简明 Python 教程 -- 第9章 数据结构 阅读

简明 Python 教程 -- 第9章 数据结构

 2007-03-29 11:52:35 来源:WEB开发网   
核心提示: 这样,shoplist[1:3]返回从位置1开始,简明 Python 教程 -- 第9章 数据结构(10),包括位置2,但是停止在位置3的一个序列切片,你不需要担心这个,只是在参考上有些细微的效果需要你注意,因此返回一个含有两个项目的切片,类似地

这样,shoplist[1:3]返回从位置1开始,包括位置2,但是停止在位置3的一个序列切片,因此返回一个含有两个项目的切片。类似地,shoplist[:]返回整个序列的拷贝。

你可以用负数做切片。负数用在从序列尾开始计算的位置。例如,shoplist[:-1]会返回除了最后一个项目外包含所有项目的序列切片。

使用Python解释器交互地尝试不同切片指定组合,即在提示符下你能够马上看到结果。序列的神奇之处在于你可以用相同的方法访问元组、列表和字符串。

参考

当你创建一个对象并给它赋一个变量的时候,这个变量仅仅 参考 那个对象,而不是表示这个对象本身!也就是说,变量名指向你计算机中存储那个对象的内存。这被称作名称到对象的绑定。

一般说来,你不需要担心这个,只是在参考上有些细微的效果需要你注意。这会通过下面这个例子加以说明。

对象与参考

例9.6 对象与参考

#!/usr/bin/python
# Filename: reference.py
print 'Simple Assignment'
shoplist = ['apple', 'mango', 'carrot', 'banana']
mylist = shoplist # mylist is just another name pointing to the same object!
del shoplist[0]
print 'shoplist is', shoplist
print 'mylist is', mylist
# notice that both shoplist and mylist both print the same list without
# the 'apple' confirming that they point to the same object
print 'Copy by making a full slice'
mylist = shoplist[:] # make a copy by doing a full slice
del mylist[0] # remove first item
print 'shoplist is', shoplist
print 'mylist is', mylist
# notice that now the two lists are different

(源文件:code/reference.py)

上一页  5 6 7 8 9 10 

Tags:简明 Python 教程

编辑录入:爽爽 [复制链接] [打 印]
赞助商链接